在sqlserver中排序时,遇到了有null的情况,通过百度试了上面的方法都不行,后来发现数据库中的不是NULL,而是字符串“null”,后来将sql语句改成order by case when col = “null” then 1 else 0 end , col desc;
为什么先1后0?因为逗号前面的是默认正序排序的,desc是作用在后面的字段上的。
以下是从网上搜到的:
在Oracle中进行查询排序时,如果排序字段里面有空值的情况下,排序结果可能会达不到自己想要的结果。
如 select * from tableTest order by VISITS desc
将原来的sql语句改写为:
select * from tableTest
order by VISITS desc nulls last
"nulls last"控制将空值记录放在后面,当然,你也可以用"nulls first"将控制记录放在前面。
1、oracle 空值处理,排序过滤
oracle认为 null 最大。
升序排列,默认情况下,null值排后面。
降序排序,默认情况下,null值排前面。
有几种办法改变这种情况:
(1)用 nvl 函数或decode 函数 将null转换为一特定值
(2)用case语法将null转换为一特定值(oracle9i以后版本支持。和sqlserver类似):
order by (case mycol when null then ’0’ else mycol end)
(3)使用nulls first 或者nulls last 语法。
这是oracle专门用来null值排序的语法。
nulls first :将null排在最前面。如:select * from mytb order by mycol nulls first
nulls last :将null排在最后面。如:select * from mytb order by mycol nulls last
2、sqlserver:
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