I am tring to combine about ten table that contain phonenumbers. Is union the best way to do it or is there a better way? Also what is the best way to store the phone numbers nchar/float ect...? This is what I am tring but it is not working:
create table animaster
as
select ani
from dbo.AM
union
select ani
from dbo.APCC
union
select ani
from dbo.BSPC
Any help? Thanks
create table animaster
as
select ani
from dbo.AM
union
select ani
from dbo.APCC
union
select ani
from dbo.BSPC
Any help? Thanks