文章详情页
mysql - 下面语句用left join 还是用not in?
浏览:171日期:2022-06-11 16:23:39
问题描述
实现:查询a中没有关联b的记录
1、select id from a left join b on a.id = b.aid where b.id is null and status = 1
2、select id from a where id not in (select aid from b) and status = 1
那种更好,或者有其他的方式,请大神留下答案
问题解答
回答1:not exists正解
select id from a where not exists (select 1 from b where a.id=b.aid) and status = 1回答2:
我想使用 not exists
浅谈sql中的in与not in,exists与not exists的区别
相关文章:
1. 为什么span的color非要内联样式才起作用?2. docker - 如何修改运行中容器的配置3. html5 - H5做的手机分享页微信更新后,分享出去不再默认显示第一个图 作为缩略图4. css - div设置float:left后高度设置自动会无效 ?5. golang - 用IDE看docker源码时的小问题6. docker start -a dockername 老是卡住,什么情况?7. 手机开发 - Android蓝牙模块连接后怎么接收数据?求助8. 请问一下各位老鸟 我一直在学习独孤九贱 现在是在tp5 今天发现 这个系列视频没有实战9. 求救一下,用新版的phpstudy,数据库过段时间会消失是什么情况?10. 老师,请问我打开browsersync出现这个问题怎么解决啊?
排行榜

网公网安备