Oracle对null的排序
Oracle在order by 时缺省认为null是最大值,所以如果是ASC升序则排在最后,DESC降序则排在最前
使用nulls first 或者nulls last 语法
nulls first和nulls last是Oracle order by支持的语法
如果order by 中指定了表达式nulls first则表示null值的记录将排在最前(不管是asc 还是 desc)
如果Order by 中指定了表达式nulls last则表示null值的记录将排在最后 (不管是asc 还是 desc)
使用语法如下:
--将nulls始终放在最前select * from tb_xxx order by col_xxx nulls first
--将nulls始终放在最后select * from tb_xxx order by col_xxx desc nulls last
本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/KimSoft/archive/2009/09/11/4541612.aspx