sql语句 如何判断A表中的a列数据是否在B表中的b列中存在
--存在 select * from A where exists(select 1 from B where A.a = B.b) --不存在 select * from A where not exists(select 1 from B where A.a = B.b)
--存在 select * from A where exists(select 1 from B where A.a = B.b) --不存在 select * from A where not exists(select 1 from B where A.a = B.b)