Oracle PL/SQL之GROUPING 函數

來源:互聯網
上載者:User

在使用ROLLUP或CUBE進行GROUP操作時會產生內容為空白的欄位,即值為NULL的欄位,那我們如何區分這些顯示為空白的欄位到底是該欄位本身值就是NULL還是由ROLLUP和CUBE產生的呢?

這時可以用GROUPING(groupingfield) 來解決,如果列中的值來自事實資料,則 GROUPING 函數返回 0;如果列中的值是ROLLUP或CUBE操作所產生的 NULL,則返回 1。

 

eg:

SELECT department_id deptid, job_id job, SUM (salary),<br /> GROUPING (department_id) grp_dept, GROUPING (job_id) grp_job<br /> FROM employees<br /> WHERE department_id < 50<br />GROUP BY ROLLUP (department_id, job_id);</p><p> DEPTID JOB SUM(SALARY) GRP_DEPT GRP_JOB<br />---------- ---------- ----------- ---------- ----------<br /> 10 AD_ASST 4400 0 0<br /> 10 4400 0 1<br /> 20 MK_MAN 13000 0 0<br /> 20 MK_REP 6000 0 0<br /> 20 19000 0 1<br /> 30 PU_MAN 11000 0 0<br /> 30 PU_CLERK 13900 0 0<br /> 30 24900 0 1<br /> 40 HR_REP 6500 0 0<br /> 40 6500 0 1<br /> 54800 1 1</p><p>11 rows selected.

 

Ref:http://blog.csdn.net/hufengwen/archive/2007/06/19/1657432.aspx

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.