标签:cas sele case end 高级 sql oracle 场景 when
使用场景:需要查询捆号为10,23,9...的数据,查询结果也是按照输入的顺序排列
sql:
select * from store
where xh in (10,23,9)
order by case xh
when 10 then 1
when 23 then 2
when 9 then 3
end
标签:cas sele case end 高级 sql oracle 场景 when
原文地址:https://www.cnblogs.com/zhuxiang1633/p/13144004.html