SQL Server 中的 ISNULL 行为

发布于 2024-12-05 14:40:04 字数 135 浏览 0 评论 0原文

根据我的理解 IsNull 函数检查第一个值是否为空或空白,然后返回下一个值。

SELECT ISNULL(1,getdate()) 

但上面的语句给出了错误。任何人都可以帮助强调原因吗?

As per my understanding IsNull Function checks the first value if its null or blank then it returns the next value.

SELECT ISNULL(1,getdate()) 

but the above statement is giving error. Can any one help to highlight the reason?

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

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

发布评论

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

评论(3

忆悲凉 2024-12-12 14:40:04

不允许从数据类型 datetime 到 int 的隐式转换,将第一个值设置为 char

SELECT ISNULL('1',getdate())

BTW,只是要注意 ISNULL 不是 ANSI 专有的,并且只接受 2 个参数,COALESCE 接受更多参数

DECLARE @1 INT,@2 int, @3 INT, @4 int
SELECT @4 = 6

SELECT COALESCE(@1,@2,@3,@4)

下面的语句是不正确的

IsNull 函数检查第一个值是否为空或空白,然后返回下一个值。

它不关心空白

运行这个

SELECT ISNULL('','A')    -- Blank is returned not A
SELECT ISNULL(NULL,'A')  -- A is returned because the first value is NULL

ISNULL和COALESCE之间的另一个区别是ISNULL将返回与第一个参数相同的长度

运行这个

DECLARE @c CHAR(3)

SELECT ISNULL(@c,'not available')  -- not
SELECT COALESCE(@c,'not available') --not available

Implicit conversion from data type datetime to int is not allowed, make the first value a char

SELECT ISNULL('1',getdate())

BTW, just be aware that ISNULL is not ANSI is proprietery and only accepts 2 parameters, COALESCE accepts a lot more

DECLARE @1 INT,@2 int, @3 INT, @4 int
SELECT @4 = 6

SELECT COALESCE(@1,@2,@3,@4)

This statement below is incorrect

IsNull Function checks the first value if its null or blank then it returns the next value.

it doesn't care for blanks

run this

SELECT ISNULL('','A')    -- Blank is returned not A
SELECT ISNULL(NULL,'A')  -- A is returned because the first value is NULL

another difference between ISNULL and COALESCE is that ISNULL will return the same length as the first parameter

run this

DECLARE @c CHAR(3)

SELECT ISNULL(@c,'not available')  -- not
SELECT COALESCE(@c,'not available') --not available
于我来说 2024-12-12 14:40:04

我猜您正在尝试用日期替换整数。也许可以试试这个 SELECT ISNULL(1,2) 。

I guess you are trying to replace an Integer with a Date. Try this SELECT ISNULL(1,2) maybe instead.

酷遇一生 2024-12-12 14:40:04

你可以让它自动播放,但我真的不推荐它。对于其他人来说,非常不清楚它想做什么:

SELECT case when not 1 is null then 1 else getdate() end

You can get it to autocast doing this but I really would not recommend it. It's super unclear to someone else looking at this what it is trying to do:

SELECT case when not 1 is null then 1 else getdate() end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文