Oracle中的不等于号

先求SUM,在按照SUM列排序

select   pub_id,sum(ytd_sales)   from   titles   group   by   pub_id  order by sum(ytd_sales)

 

关于Oracle中的不等于号:

在Oracle中,

<>
!=
~=
^=

都是不等于号的意思。都可以使用。

但是奇怪是的, 我想拿出price不是180000的商品时:(price是Number类型的)

SELECT id, name  FROM product where price<> 180000;

执行这个语句时,priceis null  的记录不出来。也就是拿不到price是null的商品。必须使用:

SELECT id, name  FROM product 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'的记录

 

最后实际使用中的2个对比:

一:

-- where  nvl(b13.attribname,'空')<>'包装类' and nvl(b13.attribname,'空')<>'搭配类' and nvl(b13.attribname,'空')<>'其他'
    -- and nvl(b13.attribname,'空')<>'陈列类' and nvl(b13.attribname,'空')<>'形象类'  and nvl(b13.attribname,'空')<>'赠品类'

二:
     
     where b13.attribname is null or (b13.attribname<>'包装类' and b13.attribname<>'搭配类' and b13.attribname<>'其他'
     and b13.attribname<>'陈列类' and b13.attribname<>'形象类'  and b13.attribname<>'赠品类')  ;

一和二查询结果是一样的。
     ;

 

 

 

你可能感兴趣的:(Oracle中的不等于号)