如何过滤查询中包含空值的结果?
你好,我有一个表,其中包含以下项目:
CODE UPDATE_DT
---- ---------
APP 08-APR-11
REJ null
CAN null
如果我必须按日期过滤它,比如说本月,2011 年 4 月 1 日到 2011 年 4 月 30 日。查询的输出将如下所示:
CODE UPDATE_DT
---- ---------
APP 08-APR-11
我是否可以选择可以包含空值的查询结果,就像位于该问题最顶部的表一样?
谢谢 @!
Hallo, I have a table which have the following item:
CODE UPDATE_DT
---- ---------
APP 08-APR-11
REJ null
CAN null
If I have to filter it by date, lets say for this month, 1-APR-2011 to 30-APR-2011. The output of the query will be like following:
CODE UPDATE_DT
---- ---------
APP 08-APR-11
Is it possible for me to select query result that could include null value just like the table locate at the top most of this question?
THanks @!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我认为您需要“IS NULL”,例如,将其添加到您的过滤器中:
I think you require "IS NULL", for example, add this to your filter:
在 where 子句末尾添加
OR UPDATE_DT IS NULL
add
OR UPDATE_DT IS NULL
at the end of you where clause您需要将 where 语句括起来以应用 OR
WHERE([日期] 之间的 update_dt 或 update_dt IS NULL)
You need to bracket your where statement to apply the OR
WHERE (update_dt between [dates] or update_dt IS NULL)