sql server 中order by 中关于null值处理

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

1、on 、where、having中把unknown当作FALSE处理,使用筛选器为unknown的行会排除在外, 
而check约束中的unknown的值被当做true,假设一个check约束中要求salary大于0,插入salary为null 
的行可以被接受 NUll > 0 的结果为unknown 
2、unique约束、排序、分组认为两个NULL是相等的 
如果表的一列被定义为unique约束,将不能插入两个为NULL值得行 
group by 把所有null分为一组 
order by 把所有的null值排列在一起

select distinct top col from t order by col 
先执行distinct –》order by –》top

你可能感兴趣的:(sqlserver)