猿问

sqlserver 和Oracle中 order by的区别

一只名叫tom的猫
浏览 608回答 1
1回答

红颜莎娜

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!
随时随地看视频慕课网APP

相关分类

SQL Server
我要回答