当前位置: 代码迷 >> Oracle管理 >> oracle中百分比有关问题
  详细解决方案

oracle中百分比有关问题

热度:55   发布时间:2016-04-24 05:55:24.0
oracle中百分比问题
我现在有一分数列(由高到低),我想取出该列的前30% 怎么取呀? 如果想取出30%-60%的数据又该怎么取呢?哪位高手知道,帮帮忙~ 在线等! 谢谢!

------解决方案--------------------
30%-60%
where trunc(100*rn/tot)>=30 and trunc(100*rn/tot) <=60
  相关解决方案