码迷,mamicode.com
首页 > 其他好文 > 详细

NULL

时间:2014-04-28 01:06:19      阅读:554      评论:0      收藏:0      [点我收藏+]

标签:des   code   style   color   rgb   rac   sql   rom   server   value   oracle   

    oracle认为 null 最大。

    升序排列,默认情况下,null值排后面。

    降序排序,默认情况下,null值排前面。

(1)用nvl函数或decode函数将null转换为一特定值

    替换null: nvl(arg,value)

(2)用case语法将null转换为一特定值:

    order by (case mycol when null then‘北京漂客’else mycol end)

(3)使用nulls first 或者nulls last 语法。

    null值排序的语法

    nulls first :将null排在最前面。如:

    select * from mytb order by mycol nulls first

    null last :将null排在最后面。如:

    select *  from mytb order by mycol nulls last

 

    sqlserver 认为 null 最小。

    升序排列:null 值默认排在最前。

    要想排后面,则:order by case when col is null then 1 else 0 end ,col

    降序排列:null 值默认排在最后。

    要想排在前面,则:order   by case when col is null then 0 else 1 end , col desc

    替换null:isnull(arg,value)

NULL,码迷,mamicode.com

NULL

标签:des   code   style   color   rgb   rac   sql   rom   server   value   oracle   

原文地址:http://www.cnblogs.com/nawforever/p/3695113.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!