gpt4 book ai didi

数据库;空场似乎不空

转载 作者:行者123 更新时间:2023-12-01 00:18:37 28 4
gpt4 key购买 nike

我在我的 MySQL 数据库中使用这个查询来查找 my_column 不为空的所有行:

SELECT * FROM my_table WHERE my_column != "";

不幸的是,许多行在 my_column 为空、没有空格和换行符的地方得到列表。

为什么?

最佳答案

您还必须检查空值

 SELECT * FROM my_table WHERE my_column != "" OR my_column IS NOT NULL

关于数据库;空场似乎不空,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42064450/

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