数据库之!=OR
数据库中有两种⽐较运算符<> 和!= ,它们是不是相同的意思呢?
经过考证,它们的意思的确相同,⽽且相关⼈员推荐使⽤<>,因为那是98标准,可能⽀持的数据库要多⼀些,但是主流的数据库两个运算时都⽀持的。
tips:
1. =some等价于 in运算
--teacher(ID varchar(10),salary numeric(5,0))
lect * from teacher where salary=some (lect salary from teacher)
--teacher(ID varchar(10),salary numeric(5,0))
lect * from teacher where salary in (lect salary from teacher)
以上两段代码的结果是相同的
2.****<>some 和not in 不相同****(画重点)
--teacher(ID varchar(10),salary numeric(5,0))
lect * from teacher where salary<>some (lect salary from teacher)
只要teacher中⽼师的⼯资不只⼀种,该语句返回所有⽼师的纪录
--teacher(ID varchar(10),salary numeric(5,0))
lect * from teacher where salary not in (lect salary from teacher)
以上语句返回空表,因为⽼师的⼯资必然在⼦查询之中(⼦查询表⽰⽼师⼯资的集合)---貌似废话
but why-----<>等价于!=也就是说,<>some 等价于!=some,即在外层查询条件的值,在内层查询之中存在与它不相等的值
例⼦:5<>some{0,1,5} 为真,因为存在0!=5
⽽5not in{0,1,5}为假,因为5在集合之中,存在5=5
好了不多说了,还不懂的童鞋可以留⾔交流