oracle ratio_to_report

时间:2018-04-27 13:05:56

标签: sql oracle

任何人都可以展示如何从字段价格计算超过ratio_to_report的功能,以取出价格的2%。

ratio_to_report(price) over () from table .

2 个答案:

答案 0 :(得分:0)

这听起来像你想要的:

SELECT 0.02 * price FROM table

不需要OVER条款。

答案 1 :(得分:0)

我认为你的意思是:100%-2%= 98%= 0.98

代码:

SELECT 0.98 * price FROM table