如何比较 2 个表中的 2 列以检查不相等的值
当我执行这样的查询时,我有一个表,表 1 的 A 列的值为 {22,18,17} ,另一个表表 2 的 B 列的值为 {18,22},
select * from Table 1 where column A not in (select column B in Table 2).
这给了我 3 行 {22,18, 17}
我只想要 17 作为输出。
我是 SQL 新手,谁能帮助我
I have a table say Table 1 with column A with values {22,18,17} and another table Table 2 with column B with values {18,22} when I do a query like
select * from Table 1 where column A not in (select column B in Table 2).
This gives me 3 rows {22,18,17}
I want only 17 as output.
I am newbie to SQL can anyone help me
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)