gpt4 book ai didi

sql-server - SQL select not a string 不返回 NULL 值

转载 作者:行者123 更新时间:2023-12-03 01:24:20 24 4
gpt4 key购买 nike

给出下表和数据

CREATE TABLE #temps
(
id int,
name varchar(max)
)

INSERT INTO #temps VALUES (1, 'foo')
INSERT INTO #temps VALUES (2, '')
INSERT INTO #temps VALUES (3, NULL)

我想选择 name 列中没有 foo 的所有行。

SELECT * FROM #temps
WHERE name <> 'foo'

DROP TABLE #temps

为什么只返回第 2 行?第 3 行中的名称不是 foo,应该返回。

最佳答案

我的解决方案是

SELECT * FROM #temps
WHERE ISNULL(name, '') <> 'foo'

关于sql-server - SQL select not a string 不返回 NULL 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6391703/

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