Sql 查询没有给出正确的输出

发布于 2024-11-29 01:46:24 字数 682 浏览 1 评论 0原文

SELECT MAX(date)
                    FROM abc
                   WHERE 
                      p_id=p_p_id
                     AND nvl(c_number,0)=nvl(p_c_number,0) 
                     AND nvl(m_number,0)=nvl(p_m_number,0)
                     AND nvl(s_number,0)=nvl(p_s_number,0);
<块引用>

在上面的查询中p_p_id,p_c_number,p_m_number & p_s_number 被传递给此查询,但此查询在某些条件下给出错误的输出: 在表 abc c_number 、m_number、s_number 中可以为 null 、零或任何其他值 我想将 c_number 如果为 null 与 p_c_number 如果为 null 进行匹配 但上述查询的问题是,如果 c_number 为 null,则将零分配给 c_number,如果 p_c_number 已经为零,则它将 null 与零值匹配 请帮忙..我正在使用 Oracle 作为 RDBMS

SELECT MAX(date)
                    FROM abc
                   WHERE 
                      p_id=p_p_id
                     AND nvl(c_number,0)=nvl(p_c_number,0) 
                     AND nvl(m_number,0)=nvl(p_m_number,0)
                     AND nvl(s_number,0)=nvl(p_s_number,0);

In the above query p_p_id,p_c_number,p_m_number & p_s_number is passed to this query ,but this query gives the wrong output in certain condition:
in table abc c_number ,m_number,s_number can be null ,zero or any other value
i want to match c_number if null with p_c_number if null
but the problem with the above query is ,in case if c_number is null the zero is assigned to c_number and if p_c_number is already zero then it matches null with zero value
please help ..i am using oracle as rdbms

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

蒗幽 2024-12-06 01:46:24

替换每个 nvl 条件

AND (c_number = p_c_number OR (c_number IS NULL AND p_c_number IS NULL))

尝试用以下内容或 pst 所示

AND (c_number = p_c_number OR COALESCE(c_number, p_c_number) IS NULL)

Try replacing each nvl condition with the following

AND (c_number = p_c_number OR (c_number IS NULL AND p_c_number IS NULL))

or as pst indicates

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