gpt4 book ai didi

sql - 如何在 SQL 中使用 NULL 或空字符串

转载 作者:行者123 更新时间:2023-12-01 16:47:54 26 4
gpt4 key购买 nike

我想知道如何在 SQL Server 的 WHERE 子句中同时使用 NULL 和空字符串。我需要查找具有空值或空字符串的记录。谢谢。

最佳答案

Select *
From Table
Where (col is null or col = '')

或者

Select *
From Table
Where IsNull(col, '') = ''

关于sql - 如何在 SQL 中使用 NULL 或空字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15663207/

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