SQL 复合查询条件(AND,OR,NOT)对NULL值的处理方法
程序员文章站
2023-12-15 21:49:46
null值影响查询条件的结果,并且结果很微妙。
以下是sql中and,or,not的真值表。
 ...
null值影响查询条件的结果,并且结果很微妙。
表2 or的真值表
表3 not的真值表
以下是sql中and,or,not的真值表。
表1 and的真值表
true |
false |
null |
|
true |
true |
false |
null |
false |
false |
false |
false |
null |
null |
false |
null |
true |
false |
null |
|
true |
true |
true |
true |
false |
true |
false |
null |
null |
true |
null |
null |
true |
false |
null |
false |
true |
null |
当两个以上的查询条件与and、or、not组合时,not的优先级最高,其次是and,最后是or。为了避免歧义和确保可移植性最好使用括号。
a between b and c 等价于 (a>=b) and (a<=c),因此根据真值表可以得出between 子句中处理null值的规则。
同样,a in(b,c,d) 等价于 (a=b)or(a=c)or(a=d), 根据真值表,只要这三个表达式中有一个为null,结果返回肯定是null。
因此,between子句和in子句并不增加sql语句的表达能力。
sql 中有null 值测试,即:字段 is (not) null ,但它的返回结果只有两种情况:true或者false。