gpt4 book ai didi

sql - 如何在 sql (oracle) 中既不是 null 又不是 not in 语句?

转载 作者:行者123 更新时间:2023-12-04 16:01:42 25 4
gpt4 key购买 nike

我想说的是

where date_end not in (null, 229)

我已经试过了

where date_end not in (229) and date_end is not null

我也试过

where date_end is not null or date_end not (229)

这是必要的,因为我在 to_date 语句中使用 date_end 来创建日期。由于闰年和空值,我想忽略 229,因为它不会在 to_date 语句中响应。

最佳答案

你可以试试:

where NVL(date_end, 229) != 229

关于sql - 如何在 sql (oracle) 中既不是 null 又不是 not in 语句?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51748885/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com