按照字符串排序的Sql写法

来源:互联网 发布:通达信现货看盘软件 编辑:程序博客网 时间:2024/05/17 08:56

参见下属范例代码:

select * from table1 where id in (3,45,123,54,2) 

order by  charindex(','+cast(id as varchar)+',',',3,45,123,54,2,')
或者也可以是
order by  case when id when 3 then 1 when 45 then 2 when 123 then 3 when 54 then 4 when 2 then 5 end

原创粉丝点击