- 博客(1)
- 收藏
- 关注
转载 sql语句查询存在一个表而不在另一个表中的数据
方法一(效率底)select distinct A.ID from A where A.ID not in (select ID from B)方法二(效率中)select A.ID from A left join B on A.ID=B.ID where B.ID is null方法三(效率高)select * from B where (select count(1) as num from A where A.ID = B.ID) = 0...
2020-12-02 14:26:26 1343
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人