34,874
社区成员
发帖
与我相关
我的任务
分享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