gpt4 book ai didi

sql - 如何在 SQL 中过滤掉包含 null 或空数据的特定列的行?

转载 作者:行者123 更新时间:2023-12-01 22:19:04 26 4
gpt4 key购买 nike

在 SQL 中,我们如何检查过滤所有包含列数据为 null 或空的行?
例如

Select Name,Age from MEMBERS

我们需要检查名称不应等于 null 或空。

最佳答案

这适用于所有理智的数据库(wink,wink),并将返回名称不为 null 也不为空的行

select name,age from members where name is not null and name <> ''

关于sql - 如何在 SQL 中过滤掉包含 null 或空数据的特定列的行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/325370/

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