Skip to main content

Oracle SQL Aggregated CASE Expressions Vs PIVOT

I had a question on my mind that, which is the most efficient way to print totals and subtotals in a single row. 


I was thinking PIVOT would be the significant way compare to case statement. Let's see which is more efficient way to do that?


Here I am giving an example to write a SQL query that performs a aggregate functions(count, sum, avg and etc) of a column while including case statement.


Step 1: Create DEPT table which will be the parent table of the EMP table.


DROP TABLE dept;

------------------------------------------------------------

CREATE TABLE dept

 (

   deptno NUMBER(2,0),

   dname  VARCHAR2(14 BYTE),

   loc    VARCHAR2(13 BYTE),

   CONSTRAINT pk_dept PRIMARY KEY (deptno) ENABLE

  );

Step 2: Insert row into DEPT table using named columns.


INSERT INTO dept (deptno,dname,loc) VALUES (10,'ACCOUNTING','NEW YORK');

INSERT INTO dept (deptno,dname,loc) VALUES (20,'RESEARCH','DALLAS');

INSERT INTO dept (deptno,dname,loc) VALUES (30,'SALES','CHICAGO');

INSERT INTO dept (deptno,dname,loc) VALUES (40,'OPERATIONS','BOSTON');


Step 3: Create the EMP table which has a foreign key reference to the DEPT table. The foreign key will require that the DEPTNO in the EMP table exist in the DEPTNO column in the DEPT table.


DROP TABLE emp;

------------------------------------------------------------

CREATE TABLE emp

  (

    empno    NUMBER(4,0),

    ename    VARCHAR2(10 BYTE),

    JOB      VARCHAR2(9 BYTE),

    mgr      NUMBER(4,0),

    hiredate DATE,

    sal      NUMBER(7,2),

    comm     NUMBER(7,2),

    deptno   NUMBER(2,0),

    CONSTRAINT pk_emp PRIMARY KEY (empno) ENABLE,

    CONSTRAINT fk_deptno FOREIGN KEY (deptno) REFERENCES dept (deptno) ENABLE

  );


Step 4: Insert row into EMP table using named columns.


INSERT INTO emp (empno,ename,JOB,mgr,hiredate,sal,comm,deptno) VALUES (7369,'SMITH','CLERK',7902,to_date('17-DEC-80','DD-MON-RR'),800,NULL,20);

INSERT INTO emp (empno,ename,JOB,mgr,hiredate,sal,comm,deptno) VALUES (7499,'ALLEN','SALESMAN',7698,to_date('20-FEB-81','DD-MON-RR'),1600,300,30);

INSERT INTO emp (empno,ename,JOB,mgr,hiredate,sal,comm,deptno) VALUES (7521,'WARD','SALESMAN',7698,to_date('22-FEB-81','DD-MON-RR'),1250,500,30);

INSERT INTO emp (empno,ename,JOB,mgr,hiredate,sal,comm,deptno) VALUES (7566,'JONES','MANAGER',7839,to_date('02-APR-81','DD-MON-RR'),2975,NULL,20);

INSERT INTO emp (empno,ename,JOB,mgr,hiredate,sal,comm,deptno) VALUES (7654,'MARTIN','SALESMAN',7698,to_date('28-SEP-81','DD-MON-RR'),1250,1400,30);

INSERT INTO emp (empno,ename,JOB,mgr,hiredate,sal,comm,deptno) VALUES (7698,'BLAKE','MANAGER',7839,to_date('01-MAY-81','DD-MON-RR'),2850,NULL,30);

INSERT INTO emp (empno,ename,JOB,mgr,hiredate,sal,comm,deptno) VALUES (7782,'CLARK','MANAGER',7839,to_date('09-JUN-81','DD-MON-RR'),2450,NULL,10);

INSERT INTO emp (empno,ename,JOB,mgr,hiredate,sal,comm,deptno) VALUES (7788,'SCOTT','ANALYST',7566,to_date('19-APR-87','DD-MON-RR'),3000,NULL,20);

INSERT INTO emp (empno,ename,JOB,mgr,hiredate,sal,comm,deptno) VALUES (7839,'KING','PRESIDENT',NULL,to_date('17-NOV-81','DD-MON-RR'),5000,NULL,10);

INSERT INTO emp (empno,ename,JOB,mgr,hiredate,sal,comm,deptno) VALUES (7844,'TURNER','SALESMAN',7698,to_date('08-SEP-81','DD-MON-RR'),1500,0,30);

INSERT INTO emp (empno,ename,JOB,mgr,hiredate,sal,comm,deptno) VALUES (7876,'ADAMS','CLERK',7788,to_date('23-MAY-87','DD-MON-RR'),1100,NULL,20);

INSERT INTO emp (empno,ename,JOB,mgr,hiredate,sal,comm,deptno) VALUES (7900,'JAMES','CLERK',7698,to_date('03-DEC-81','DD-MON-RR'),950,NULL,30);

INSERT INTO emp (empno,ename,JOB,mgr,hiredate,sal,comm,deptno) VALUES (7902,'FORD','ANALYST',7566,to_date('03-DEC-81','DD-MON-RR'),3000,NULL,20);

INSERT INTO emp (empno,ename,JOB,mgr,hiredate,sal,comm,deptno) VALUES (7934,'MILLER','CLERK',7782,to_date('23-JAN-82','DD-MON-RR'),1300,NULL,10);

------------------------------------------------------------

Workaround: The following SQL statement finds the number of employees and total salary of each department.


The Case Query: 

WITH employee_details AS
  (SELECT deptno,
          nvl(sal,0)+nvl(comm,0) AS total_salary
          FROM emp)
SELECT 
      count (CASE WHEN ed.deptno = 30 THEN 1 ELSE NULL END) sales_persons,
      sum (CASE WHEN ed.deptno = 30 THEN ed.total_salary ELSE 0 END) total_sal_sales,
      count (CASE WHEN ed.deptno = 20 THEN 1 ELSE NULL END) research_scholars,
      sum (CASE WHEN ed.deptno = 20 THEN ed.total_salary ELSE 0 END) total_sal_research,
      count (CASE WHEN ed.deptno = 10 THEN 1 ELSE NULL END) accountants,
      sum (CASE WHEN ed.deptno = 10 THEN ed.total_salary ELSE 0 END) total_sal_accounting,
      count (CASE WHEN ed.deptno = 40 THEN 1 ELSE NULL END) operations_employees,  
      sum (CASE WHEN ed.deptno = 40 THEN ed.total_salary ELSE 0 END) total_sal_operations
 FROM employee_details ed;

Fig 1: Cost of the case statement query

Fig 2: Output of the case statement query

The PIVOT Query:

SELECT *
  FROM (SELECT deptno, 
               nvl(sal,0)+nvl(comm,0) AS total_salary 
          FROM emp
 pivot (count(deptno) , 
        sum(total_salary) total_salary
   FOR deptno IN (10 AS accounting, 20 AS research, 30 AS sales, 40 AS operations)
       );
Fig 3: Cost of the PIVOT query

Fig 4: Output of the PIVOT query

Conclusion: The two executions plans were almost identical and took almost same time to fetch the data. If you want to write compact code then you can prefer PIVOT method - the syntax is very simple.

That's it.

References:

Comments

Popular posts from this blog

Printing Page Numbers in RTF Template [Oracle BI Publisher]

Here I am giving an example to print the page numbers dynamically in the RTF (Rich Text Format) template. Step 1:  Go to page footer and copy and paste the below script. Page |  <?fo:page-number?>  of  <?fo:page-number-citation:xdofo:lastpage-joinseq?> <fo:page-number> :   This is the object, which is used to represent the current page-number. <?fo:page-number-citation:xdofo:lastpage-joinseq?> :  This is the syntax, which is used to represent the total number of pages. Step 2:  Load the XML and preview the result. Output: That's it. References: fo:page-number Printing Page Number Code in Oracle XMLP RTF Template

Generating the report with APEX_DATA_EXPORT

With the APEX_DATA_EXPORT package, you are able to export data from Oracle Application Express in the following file types: PDF, XLSX, HTML, CSV, XML, and JSON. Step 1: Create a table and populate it with some sample records. CREATE TABLE emp   (     empno        NUMBER,     first_name   VARCHAR2(240),     last_name    VARCHAR2(240),     mgr          NUMBER,     deptno       NUMBER,     sal          NUMBER,     created_date TIMESTAMP (6),     comm         NUMBER,     hiredate     DATE,     JOB          VARCHAR2(240),     ename        VARCHAR2(240),     PRIMARY KEY (empno) USING INDEX ENABLE   ); /    INSERT INTO emp (empno, first_name, last_name, mgr,                   deptno, sal, created_date)         VALUES                 (1, 'Larry', 'Ellison', ,                  10, 5000, LOCALTIMESTAMP);   INSERT INTO emp (empno, first_name, last_name, mgr,                   deptno, sal, created_date)         VALUES                 (2, 'Juan', 'Juan', 1,  

Save Selected Interactive Grid Records into a Collection - Oracle APEX

Here I am giving an example to save selected interactive grid records into a oracle apex collection. Step 1: Create a new blank page. Note: Mine was page 20. You will need to update reference to " P20 " with your page number if it's different. Step 2: Create a new interactive grid report region to the page using below query. Set Static Id "EmpDetails" to the region. SELECT  *     FROM   ( SELECT  emp . empno ,                emp . ename ,                emp . JOB ,                dept . dname department ,                dept . loc  LOCATION ,                mgr . ename  manager ,                emp . hiredate ,                 nvl ( emp . sal , 0 )  salary ,                 nvl ( emp . comm , 0 )  commission            FROM  eba_demo_chart_emp emp ,                eba_demo_chart_dept dept ,                eba_demo_chart_emp mgr           WHERE  emp . deptno = dept . deptno             AND  emp . mgr      = mgr . empno  ( + )           ORDER   BY  emp . ename