gpt4 book ai didi

sql - x = null 与 x IS NULL 之间的区别

转载 作者:行者123 更新时间:2023-12-04 16:11:09 24 4
gpt4 key购买 nike

在雪花中,x = NULL和有什么区别和 x IS NULL在条件表达式中?从经验上看来,x IS NULL当我想查找某些列是空白的行时,这是我想要的。我问是因为x = NULL被视为有效的语法,我很好奇这个表达式是否有不同的应用程序。

最佳答案

what is the difference between x = NULL and x IS NULL



在 Snowflake 中就像在其他 RDBMS 中一样,Nothing 等于 NULL (甚至 NULL 本身),所以条件 x = NULL (这是有效的 SQL 语法)将始终评估为 false(实际上,在大多数 RDBMS 中它评估为 NULL,这不是真的)。请注意,对于非相等比较也是如此:即 NULL <> NULL也是假的。

检查变量是否的典型方法是 NULL是使用 x IS NULL构造,如果 x 则评估为真是 NULL .您可以使用 x IS NOT NULL也。此语法为 NULL 保留,所以类似 x IS y是语法错误。

这是 a small demo :
select 
case when 1 = null then 1 else 0 end 1_equal_null,
case when 1 <> null then 1 else 0 end 1_not_equal_null,
case when null is null then 1 else 0 end null_is_null,
case when 1 is not null then 1 else 0 end 1_is_not_null

1_equal_null | 1_not_equal_null | null_is_null | 1_is_not_null
-----------: | ---------------: | -----------: | ------------:
0 | 0 | 1 | 1

关于sql - x = null 与 x IS NULL 之间的区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59666185/

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