oracle高级查询
Posted fight139
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle高级查询相关的知识,希望对你有一定的参考价值。
按照指定顺序排序
使用场景:需要查询捆号为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
以上是关于oracle高级查询的主要内容,如果未能解决你的问题,请参考以下文章