111,120
社区成员
发帖
与我相关
我的任务
分享select * from @ta a where not exists (select 1 from @tb where col1=a.col1)select col1 from
(
select col1 from A
union
select col2 from B
) t
where col1 not in
(
select col1 from A
intersect--交集
select col1 from B
)