发布网友 发布时间:2022-04-23 02:34
共2个回答
懂视网 时间:2022-04-07 23:20
测试SQL
create table test( id int, name varchar2(10), age int ) insert into test(id,name,age) values(1,‘zhangsan‘,23); insert into test(id,name,age) values(2,‘lisi‘,‘‘); insert into test(id,name,age) values(3,‘wangwu‘,null); insert into test(id,name,age) values(4,‘sunqi‘,27); insert into test(id,name,age) values(5,‘‘,22);
如图:
字段NAME和AGE都有空值
例1、查询AGE不等于23的数据
select * from test where age <> 23;
例2、查询NAME不为lisi的数据
select * from test where name != ‘lisi‘;
以上两个例子严格意义上说均不符合我们的要求,因为没有把null值查询出来
null只能通过is null或者is not null来判断,其它操作符与null操作都是false。
最后正确的sql语句为:
select * from test where instr(concat(name,‘xx‘),‘lisi‘) = 0; --查询name字段不等于‘lisi‘的记录 或 select * from test where nvl(name,‘xx‘)<>‘lisi‘;
select * from test where instr(concat(age,00),23) = 0; --查询age字段不等于23的记录 或 select * from test where nvl(age,00)<>23;
作者:itmyhome
Oracle中不等于号问题
标签:oracle 不等于号
热心网友 时间:2022-04-07 20:28
在Oracle中,
<>
!=
~=
^=
都是不等于号的意思。都可以使用。
但是奇怪是的, 我想拿出price不是180000的商品时:(price是Number类型的)
SELECT id, name FROM proct where price<> 180000;
执行这个语句时,priceis null 的记录不出来。也就是拿不到price是null的商品。必须使用:
SELECT id, name FROM proct where price<> 180000 or price is null;才行。
字符串的字段存在同样的问题。
记住:null只能通过is null或者is not null来判断,其它操作符与null操作都是false。
======================================================================================================
测试:select * from test where name<>'xn'。只能查出name非空的记录。去掉name<>'xn'就可以了。这种写法有问题。
然后用了instr(name,'xn')=0 来判断,如果name非空的话,判断还是有效的。如果name为空,这个判断又出问题了。不得已只得采取instr(concat(name,'xx'),'xn') = 0来判断,因为就算name为空,当和'xx'连接后,也会不为空的。
所以最后的sql语句为:
select * from test where instr(concat(name,'xx'),'xn') = 0 来查询name字段不等于'xn'的记录。
或者可以用 select * from test where nvl(name,'xx')<>'xn' 来查询name字段不等于'xn'的记录。