比较两个 SQL 表并返回缺失的 id?
我有两个简单的表:(这里只有“id”列)
table1:
id
1
2
3
4
table2:
id
2
4
sql查询应该比较两个表是否缺少table2中的“id”并返回: 1,3
有什么想法吗? :) 蒂
I have two simple tables: (here only the "id" column)
table1:
id
1
2
3
4
table2:
id
2
4
the sql query should compare the two tables for missing "id" in table2 and return:
1,3
any ideas? :) TY
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
有几种方法可以给这只猫剥皮:
或者您可以使用左外连接:
There are several ways to skin this cat:
Or you could use a left outer join:
试试这个:
Try this: