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
