Sql 查询没有给出正确的输出
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
替换每个
nvl
条件尝试用以下内容或 pst 所示
Try replacing each
nvl
condition with the followingor as pst indicates