码迷,mamicode.com
首页 > 数据库 > 详细

mssql sqlserver 指定特定值排在表前面

时间:2018-10-08 18:09:44      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:color   idt   val   href   info   style   www.   http   amp   

转自:http://www.maomao365.com/?p=7141

摘要:
下文讲述sql脚本编写中,将 特定值排在最前面的方法分享,
实验环境:sqlserver 2008 R2



例:将数据表中指定值为0的行排在最前面呈现给用户

create table test(keyId int identity,info varchar(10),flag int)
go

insert into test(info,flag)values (a,-100),(b,-2),(C,-3)
,(d,2),(e,4),(f,8),(g,9),(h,0),(e,1),(f,0)
go

---将flag值等于0的放入最前面显示
select * from test order by 
case when flag =0 then 0 else 1 end ,
flag asc 
go

---将flag值等于2的放入最前面显示
select * from test order by 
case when flag =2 then 0 else 1 end ,
flag asc 
go

go
truncate table test
drop table test

技术分享图片

 

mssql sqlserver 指定特定值排在表前面

标签:color   idt   val   href   info   style   www.   http   amp   

原文地址:https://www.cnblogs.com/lairui1232000/p/9755571.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!