Oracle中RATIO

30次阅读
没有评论

共计 1472 个字符,预计需要花费 4 分钟才能阅读完成。

行业资讯    
数据库    
Oracle 中 RATIO_TO_REPORT() OVER() 函数的作用是什么

自动写代码机器人,免费开通

这篇文章将为大家详细讲解有关 Oracle 中 RATIO_TO_REPORT() OVER() 函数的作用是什么,文章内容质量较高,因此丸趣 TV 小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。

20:00:24 SYS@orcl  conn scott/tiger;
Connected.
20:00:30 SCOTT@orcl  create table test
20:01:22 2 (20:01:22 3 name varchar(20),
20:01:22 4 kemu varchar(20),
20:01:22 5 score number
20:01:22 6 );
Table created.
Elapsed: 00:00:00.04
20:01:23 SCOTT@orcl  insert into test values(testa , yuwen ,10);
1 row created.
Elapsed: 00:00:00.02
20:01:35 SCOTT@orcl  insert into test values(testa , 英语 ,100);
1 row created.
Elapsed: 00:00:00.00
20:01:35 SCOTT@orcl  insert into test values(testb , yuwen ,60);
1 row created.
Elapsed: 00:00:00.01
20:01:36 SCOTT@orcl  insert into test values(testb , yuwen ,120);
1 row created.
Elapsed: 00:00:00.00
20:01:36 SCOTT@orcl  insert into test values(testc , yuwen ,40);
1 row created.
Elapsed: 00:00:00.00
20:01:37 SCOTT@orcl  commit;
Commit complete.
Elapsed: 00:00:00.00
20:01:42 SCOTT@orcl  select name,
20:03:32 2 score,
20:03:32 3 ratio_to_report(score) over() as ratio1,
20:03:32 4 ratio_to_report(score) over(partition by kemu) as ratio2
20:03:32 5 from test ;
NAME SCORE RATIO1 RATIO2
-------------------- ---------- ---------- ----------
testa 10 .03030303 .043478261
testb 60 .181818182 .260869565
testc 40 .121212121 .173913043
testb 120 .363636364 .52173913
testa 100 .303030303 1
Elapsed: 00:00:00.00
20:03:33 SCOTT@orcl

关于 Oracle 中 RATIO_TO_REPORT() OVER() 函数的作用是什么就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。

向 AI 问一下细节

正文完
 
丸趣
版权声明:本站原创文章,由 丸趣 2023-12-04发表,共计1472字。
转载说明:除特殊说明外本站除技术相关以外文章皆由网络搜集发布,转载请注明出处。
评论(没有评论)