1.如果你要保留重复,那么
insert into C
select A.sd from A
union all
select B.sd from B2.如果你要合并重复,那么
insert into C
select A.sd from A
union 
select B.sd from B3.如果你的表C还不存在,那么
select K.* into C from (
select A.sd from A
union --或者union all
select B.sd from B)K