SQL按指定文字顺序进行排序(中文或数字等)

在有些情况下我们需要按指定顺序输出数据,比如选择了ID in(3,1,2,5,4)我们希望按这个3,1,2,5,4的顺序输出,这样只使用order by ID是无法实现的,

但是我们可以使用order by charindex(','+convert(varchar,ID)+',',',3,1,2,5,4,')的方法来实现这个目的。举例如下:

Create Table info(

ID int identity(1,1) not null,

title varchar(100) not null

)

insert into info(title) values('aa')
insert into info(title) values ('bb')
insert into info(title)values('cc')
insert into info(title) values('dd')
insert into info(title)values('ee')

/*方法一:*/
select id,title

from info

where id in ('3','1','2','5','4')

order by charindex(','+convert(varchar,ID)+',' , ',3,1,2,5,4,')

/*方法二:*/
select id,title

from info

where id in ('3','1','2','5','4')
--where id in ('1','2','3','4','5')

order by  CHARINDEX(RTRIM(CAST(id as NCHAR)), ',3,1,2,5,4,')

/*其它示例*/
select prx_class,prx_name,isnull(sum(sunMen),0) as sunMen,isnull(sum(sumMoney),0)  as sumMoney  from 
(   select prx_class,prx_code,prx_name,isnull(sum(money),0) as sunMen, case when prx_code='项目冲减' then isnull(sum(num),0) * -1  else isnull(sum(num),0) end   as sumMoney 
    from receive_paybill   
    WHERE the_date >='2014/6/1 0:00:00' AND the_date<='2014/6/10 0:00:00'  and prx_code is not null and prx_code<>'' and substoreid='004' 
    group by prx_code,prx_name,prx_class 
) as tb 
group by prx_name,prx_class
--order by CHARINDEX(RTRIM(CAST(prx_class as NCHAR)),',小商品,钟点房费,会员卡费,房费,')  desc
order by charindex(','+prx_class+',',',小商品,钟点房费,会员卡费,房费,') desc

 

转载于:https://www.cnblogs.com/elves/p/3818124.html

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值