IN 子句,TSQL/SQL Server 中的 NULL 处理?
假设有一个像这样的表:
f1 f2
----------
1 3
4 8
6 4
NULL 1
以下查询按预期工作:
SELECT f2
FROM Table_1 a
WHERE NOT EXISTS (SELECT *
FROM Table_1
WHERE a.f2 = f1)
...结果集是:
f2
---
3
8
...但是使用 IN
的类似查询不返回任何内容:
SELECT f2
FROM Table_1 a
WHERE f2 NOT IN (SELECT b.f1
FROM Table_1 b)
有什么问题?
Suppose there is a table like this:
f1 f2
----------
1 3
4 8
6 4
NULL 1
The following query works as expected :
SELECT f2
FROM Table_1 a
WHERE NOT EXISTS (SELECT *
FROM Table_1
WHERE a.f2 = f1)
...and result set is:
f2
---
3
8
...but similar query with IN
returns nothing:
SELECT f2
FROM Table_1 a
WHERE f2 NOT IN (SELECT b.f1
FROM Table_1 b)
What's the problem ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是因为 f1 中的
null
值。试试这个吧。关于为什么会这样,这里有一个很好的解释。 NOT IN 子句和 NULL 值
It is because of the
null
value in f1. Try this instead.Here is a great explanation as to why it is so. NOT IN clause and NULL values