• SQL Server、Oracle数据库排序空值null问题解决办法


    【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

    【oracle】:

    oracle认为 null 最大。

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

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

    有几种办法改变这种情况:

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

    (2)用case语法将null转换为一特定值(oracle9i以后版本支持。和sqlserver类似):
    order by (case mycol when null then '北京漂客'     else   mycol   end)

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

    这是oracle专门用来null值排序的语法。

    nulls first :将null排在最前面。如:select * from mytb order by mycol nulls first

    null last :将null排在最后面。如:select * from mytb order by mycol nulls last

    如果要想让含有null的列按照自己的意愿进行排序,可做如上处理。

  • 相关阅读:
    Deployment descriptor
    实体、list 、xml之间的转化
    关于C# 汉字转拼音问题
    NPoco学习笔记(1)
    SQL(二)
    SQL(一)
    sobel算子及cvSobel
    图像的平滑处理
    erase的用法
    int main(int argc, char* argv[ ])
  • 原文地址:https://www.cnblogs.com/henryhappier/p/1761896.html
Copyright © 2020-2023  润新知