如何过滤查询中包含空值的结果?

发布于 2024-11-02 13:57:22 字数 314 浏览 1 评论 0原文

你好,我有一个表,其中包含以下项目:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

沐歌 2024-11-09 13:57:22

我认为您需要“IS NULL”,例如,将其添加到您的过滤器中:

OR UPDATE_DT IS NULL

I think you require "IS NULL", for example, add this to your filter:

OR UPDATE_DT IS NULL
雨后咖啡店 2024-11-09 13:57:22
SELECT code,
       update_dt
  FROM tableName
 WHERE update_dt BETWEEN <your current filter dates>
    OR update_dt IS NULL
SELECT code,
       update_dt
  FROM tableName
 WHERE update_dt BETWEEN <your current filter dates>
    OR update_dt IS NULL
等风也等你 2024-11-09 13:57:22

在 where 子句末尾添加 OR UPDATE_DT IS NULL

add OR UPDATE_DT IS NULL at the end of you where clause

凡尘雨 2024-11-09 13:57:22

您需要将 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)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文