文章详情页
mysql - 下面语句用left join 还是用not in?
浏览:172日期: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. node.js - webpack required打包问题2. javascript - h5微信中怎么禁止横屏3. boot2docker无法启动4. nignx - docker内nginx 80端口被占用5. 为什么我ping不通我的docker容器呢???6. python - 怎么查看网址做的是什么反爬虫7. Docker for Mac 创建的dnsmasq容器连不上/不工作的问题8. 关docker hub上有些镜像的tag被标记““This image has vulnerabilities””9. docker-compose中volumes的问题10. angular.js使用$resource服务把数据存入mongodb的问题。
排行榜

网公网安备