Oracle使用order by排序关于null值处理

select * from dual order by age desc nulls last

select * from test order by age asc nulls first

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

上一篇:1050. [HAOI2006]旅行【并查集+枚举】


下一篇:Object-C 基础笔记4---ARC内存管理