sql复合查询与null对查询结果影响分析
复制代码 代码如下:
* from expert_details twhere t.modifier = ''
没有检索出一条记录,而这与存储在该表中的记录是不相符的。后来想到即便是空字符型存储在中也应该是null而不是''。
然后我使用下列sql 语句,仍然没有检索出一条记录。
复制代码 代码如下:
select * from expert_details t
where t.modifier = null
最后我想到了sql中的null 值测试。使用如下语句,终于检索出了想要的结果。
复制代码 代码如下:
select * from expert_details t
where t.modifier is null
在sql语句中,where 子句:where t.modifier = null ,这里不可以使用null关键字,因为它不是一个真正的值,它仅仅是一个符号,因为它的值是未知的。当t.modifier本身就是null时,即where子句为:where null= null ,当等号两边的值都是未知的时候,结果是true还是false,sql不能给出一个明确的结果,所以查询出的结果也为null。
因此必须明确使用null值测试即 字段 is null 或者其否定形式 字段 is not null 来检测null值。
以下是sql中and,or,not的真值表。
表1 and的真值表
true |
false |
null |
|
true |
true |
false |
null |
false |
false |
false |
false |
null |
null |
false |
null |
表2 or的真值表
true |
false |
null |
|
true |
true |
true |
true |
false |
true |
false |
null |
null |
true |
null |
null |
表3 not的真值表
true |
false |
null |
false |
true |
null |
当两个以上的查询条件与and、or、not组合时,not的优先级最高,其次是and,最后是or。为了避免歧义和确保可移植性最好使用括号。
a between b and c 等价于 (a>=b) and (a
同样,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。
上一篇: 怎的把“女人”转换为“%C5%AE%C8%CB”这样子呢
下一篇: php中随机广告显示调用代码