文章详情页
mysql - 下面语句用left join 还是用not in?
浏览:98日期: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. mysql - AttributeError: ’module’ object has no attribute ’MatchType’2. php自学从哪里开始?3. javascript - 百度echarts series数据更新问题4. MySQL客户端吃掉了SQL注解?5. 求大神帮我看看是哪里写错了 感谢细心解答6. javascript - JS设置Video视频对象的currentTime时出现了问题,IE,Edge,火狐,都可以设置,反而chrom却...7. javascript - 图片能在网站显示,但控制台仍旧报错403 (Forbidden)8. python小白的基础问题 关于while循环的嵌套9. phpstady在win10上运行10. python - Django分页和查询参数的问题
排行榜
