文章目录[隐藏]
A表
user_id name
1 张三
2 李四
3 王五
4 麻子
B表
id user_id ………………
1 1
2 4
如何用一句MYSQL8本文来源gao.dai.ma.com搞@代*码(网$
搞代gaodaima码
语句搜索出A表中的2,3(即李四和王五):也就是说列出B表中没有的user_id
回复讨论(解决方案)
select * from A where user_id not in(select user_id from B);