gpt4 book ai didi

mysql - 选择特定列具有 null 或 'default' 值的行

转载 作者:行者123 更新时间:2023-11-29 14:37:39 25 4
gpt4 key购买 nike

我有一个相当大的数据库,我需要选择它们为空或默认的字段。

例如:

Table: Table_A
Row #1234
name, mname, lname
[data] [data] [null]

我需要一个查询来概括这一点,以便我可以根据其状态选择“lname”(其中为 NULL)、mname 或 none。

--

我只需要选择一行中所有“NULL”或“FALSE”字段,并仅返回那些为NULL或FALSE的字段。

最佳答案

尝试

SELECT * FROM table WHERE col1 IS NULL or col2 IS NULL or ... or col1 = 'default' or col2 = 'default' ...

关于mysql - 选择特定列具有 null 或 'default' 值的行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8674201/

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