gpt4 book ai didi

mysql - 当值为 NULL 时不返回行

转载 作者:行者123 更新时间:2023-11-29 04:17:24 25 4
gpt4 key购买 nike

当尝试选择除 question_type!= 'A' 以外的所有内容时;当question_type为NULL时,该行不返回数据。

select * from table where question_type!= 'A';

最佳答案

因此,将其包含在 where 中子句;

select t.*
from table t
where question_type <> 'A' or question_type is null;

或者,使用“null-safe”等于:

select t.*
from table t
where not question_type <=> 'A' ;

ANSI SQL 实现 IS DISTINCT FROMIS NOT DISTINCT FROM . <=>运算符相当于 IS NOT DISTINCT FROM .

关于mysql - 当值为 NULL 时不返回行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37985912/

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