34,838
社区成员




select a,b,c into #tb from table union select a,b,c into #tb2 from table2
select a,b,c into #tb from table
select a,b,c into #tb2 from table2
select * from #tb
union all --不过滤重复数据了
select * from #tb2
select a,b,c into #tb from table
select a,b,c into #tb2 from table2
select * from #tb
union
select * from #tb2