gpt4 book ai didi

sql - 'IN' 子句的奇怪行为有效

转载 作者:行者123 更新时间:2023-12-01 22:58:34 25 4
gpt4 key购买 nike

我找到了这个网站:here

它很好地描述了它为什么起作用以及为什么不起作用。

但我的问题有点不同。

select 'true' from dual where 'test' not in ('test2','');

为什么这个查询不返回一行?
''处理方式类似 null ?

谢谢你的帮助

最佳答案

您的怀疑 were correct .

所以你的查询基本上是

WHERE 'test' <> 'test2' and  'test' <> Null

其中评估为
WHERE true and unknown

这是 unknown
select * from dual where '' = '';

将给出相同(缺乏)的结果

关于sql - 'IN' 子句的奇怪行为有效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3548896/

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