oracle sum()over函數的使用

來源:互聯網
上載者:User

    oracle sum()over函數的使用             over不能單獨使用,要和分析函數:rank(),dense_rank(),row_number()等一起使用。              over函數的參數:over(partition by columnname1 order by columnname2)       含義,按columname1指定的欄位進行分組排序,或者說按欄位columnname1的值進行分組排序。       例如:employees表中,有兩個部門的記錄:department_id =10和20              select department_id,rank() over(partition by department_id order by salary) from employees   www.2cto.com               就是指在部門10中進行薪水的排名,在部門20中進行薪水排名。              如果是partition by org_id,則是在整個公司內進行排名。       -------------------------------       sum(...) over ... 的使用              根據over(...)條件的不同              使用 sum(sal) over (order by ename)... 查詢員工的薪水“連續”求和;              注意over (order by ename)如果沒有order by 子句,求和就不是“連續”的,       把所有的值加到一起作為一個值。體會一下不同之處:              SQL> select deptno,ename,sal,       2 sum(sal) over (order by ename) 連續求和,       3 sum(sal) over () 總和, -- 此處sum(sal) over () 等同於sum(sal)       4 100*round(sal/sum(sal) over (),4) "份額(%)"       5 from emp       6 /   www.2cto.com                   DEPTNO ENAME             SAL   連續求和       總和    份額(%)       ---------- ---------- ---------- ---------- ---------- ----------               20 ADAMS            1100       1100      29025       3.79               30 ALLEN            1600       2700      29025       5.51               30 BLAKE            2850       5550      29025       9.82               10 CLARK            2450       8000      29025       8.44               20 FORD             3000      11000      29025      10.34               30 JAMES             950      11950      29025       3.27               20 JONES            2975      14925      29025      10.25               10 KING             5000      19925      29025      17.23               30 MARTIN           1250      21175      29025       4.31               10 MILLER           1300      22475      29025       4.48               20 SCOTT            3000      25475      29025      10.34               20 SMITH             800      26275      29025       2.76               30 TURNER           1500      27775      29025       5.17               30 WARD             1250      29025      29025       4.31              使用子分區查出各部門薪水連續的總和。注意按部門分區。注意over(...)條件的不同,       sum(sal) over (partition by deptno order by ename) 按部門“連續”求總和       sum(sal) over (partition by deptno) 按部門求總和              sum(sal) over (order by deptno,ename) 不按部門“連續”求總和       sum(sal) over () 不按部門,求所有員工總和,效果等同於sum(sal)。              SQL> select deptno,ename,sal,       2 sum(sal) over (partition by deptno order by ename) 部門連續求和,--各部門的薪水"連續"求和   www.2cto.com        3 sum(sal) over (partition by deptno) 部門總和, -- 部門統計的總和,同一部門總和不變       4 100*round(sal/sum(sal) over (partition by deptno),4) "部門份額(%)",       5 sum(sal) over (order by deptno,ename) 連續求和, --所有部門的薪水"連續"求和       6 sum(sal) over () 總和, -- 此處sum(sal) over () 等同於sum(sal),所有員工的薪水總和       7 100*round(sal/sum(sal) over (),4) "總份額(%)"       8 from emp   

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.