gpt4 book ai didi

sql选择列不包含数字的位置

转载 作者:行者123 更新时间:2023-11-29 13:15:35 29 4
gpt4 key购买 nike

我需要一个 sql 命令来选择所有不包含特定数字的行。

我有什么:

    Select * from table
Where (col1 != 1 or col2 != 1 or col3 != 1)

问题是这不会选择任何一列为空的行。所有 3 列都是整数类型。

最佳答案

对可为空的列使用 is distinct from 而不是 !=:

select * 
from my_table
where (
col1 is distinct from 1
or col2 is distinct from 1
or col3 is distinct from 1)

关于sql选择列不包含数字的位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49554829/

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