gpt4 book ai didi

sql - 如何使用 case 语句捕获 NULL 值

转载 作者:行者123 更新时间:2023-12-02 10:33:59 26 4
gpt4 key购买 nike

在此查询中,我想用一些新值替换 Adventureworks 数据库的 Person.Contact 中的值。下面的查询 case 语句对于其他值工作正常,但我无法更改 NULL 中的值。我正在使用 SQL Server。如有任何帮助,我们将不胜感激。

select contactid,Title,FirstName,MiddleName,case MiddleNamewhen 'R.' then 'Robert'when 'B.' then 'Bids'when 'J.' then 'John'when is null then 'New Name'else 'No Name'end, LastName from Person.Contact

最佳答案

case 
when MiddleName is null then ...
when MiddleName = 'R' then ...
end

关于sql - 如何使用 case 语句捕获 NULL 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2085100/

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