copyright oracle corporation, 1998. all rights reserved. 4 aggregating data using group functions

25
Copyright Oracle Corporation, 1998. All rights reserved. 4 4 Aggregating Data Using Group Functions

Upload: rebeca-romp

Post on 14-Jan-2016

221 views

Category:

Documents


3 download

TRANSCRIPT

Page 1: Copyright  Oracle Corporation, 1998. All rights reserved. 4 Aggregating Data Using Group Functions

Copyright Oracle Corporation, 1998. All rights reserved.

44

Aggregating Data Using Group Functions

Aggregating Data Using Group Functions

Page 2: Copyright  Oracle Corporation, 1998. All rights reserved. 4 Aggregating Data Using Group Functions

4-2 Copyright Oracle Corporation, 1998. All rights reserved.

ObjectivesObjectives

At the end of this lesson, you should be At the end of this lesson, you should be able to:able to:

• Identify the available group functions

• Describe the use of group functions

• Group data using the GROUP BY clause

• Include or exclude grouped rows by using the HAVING clause

At the end of this lesson, you should be At the end of this lesson, you should be able to:able to:

• Identify the available group functions

• Describe the use of group functions

• Group data using the GROUP BY clause

• Include or exclude grouped rows by using the HAVING clause

Page 3: Copyright  Oracle Corporation, 1998. All rights reserved. 4 Aggregating Data Using Group Functions

4-3 Copyright Oracle Corporation, 1998. All rights reserved.

What Are Group Functions?What Are Group Functions?Group functions operate on sets of rows to give Group functions operate on sets of rows to give one result per group.one result per group.Group functions operate on sets of rows to give Group functions operate on sets of rows to give one result per group.one result per group.EMPEMP

““maximum maximum salary in salary in

the EMP table”the EMP table”

DEPTNO SAL--------- --------- 10 2450 10 5000 10 1300 20 800 20 1100 20 3000 20 3000 20 2975 30 1600 30 2850 30 1250 30 950 30 1500 30 1250

MAX(SAL)

---------

5000

Page 4: Copyright  Oracle Corporation, 1998. All rights reserved. 4 Aggregating Data Using Group Functions

4-4 Copyright Oracle Corporation, 1998. All rights reserved.

Types of Group FunctionsTypes of Group Functions

• AVG ([DISTINCT|ALL]n)

• COUNT ({ *|[DISTINCT|ALL]expr})

• MAX ([DISTINCT|ALL]expr)

• MIN ([DISTINCT|ALL]expr)

• STDDEV ([DISTINCT|ALL]x)

• SUM ([DISTINCT|ALL]n)

• VARIANCE ([DISTINCT|ALL]x)

• AVG ([DISTINCT|ALL]n)

• COUNT ({ *|[DISTINCT|ALL]expr})

• MAX ([DISTINCT|ALL]expr)

• MIN ([DISTINCT|ALL]expr)

• STDDEV ([DISTINCT|ALL]x)

• SUM ([DISTINCT|ALL]n)

• VARIANCE ([DISTINCT|ALL]x)

Page 5: Copyright  Oracle Corporation, 1998. All rights reserved. 4 Aggregating Data Using Group Functions

4-5 Copyright Oracle Corporation, 1998. All rights reserved.

Using AVG and SUM FunctionsUsing AVG and SUM Functions

AVG(SAL) MAX(SAL) MIN(SAL) SUM(SAL)-------- --------- --------- --------- 1400 1600 1250 5600

You can use AVG and SUM for numeric data.You can use AVG and SUM for numeric data.You can use AVG and SUM for numeric data.You can use AVG and SUM for numeric data.

SQL> SELECT AVG(sal), MAX(sal), 2 MIN(sal), SUM(sal) 3 FROM emp 4 WHERE job LIKE 'SALES%';

Page 6: Copyright  Oracle Corporation, 1998. All rights reserved. 4 Aggregating Data Using Group Functions

4-6 Copyright Oracle Corporation, 1998. All rights reserved.

Using MIN and MAX FunctionsUsing MIN and MAX Functions

You can use MIN and MAX for any datatype.You can use MIN and MAX for any datatype.You can use MIN and MAX for any datatype.You can use MIN and MAX for any datatype.

SQL> SELECT MIN(hiredate), MAX(hiredate) 2 FROM emp;

MIN(HIRED MAX(HIRED--------- ---------17-DEC-80 12-JAN-83

Page 7: Copyright  Oracle Corporation, 1998. All rights reserved. 4 Aggregating Data Using Group Functions

4-7 Copyright Oracle Corporation, 1998. All rights reserved.

Using the COUNT FunctionUsing the COUNT Function

COUNT(*)--------- 6

SQL> SELECT COUNT(*) 2 FROM emp 3 WHERE deptno = 30;

COUNT(*) returns the number of rows in a COUNT(*) returns the number of rows in a table.table.COUNT(*) returns the number of rows in a COUNT(*) returns the number of rows in a table.table.

Page 8: Copyright  Oracle Corporation, 1998. All rights reserved. 4 Aggregating Data Using Group Functions

4-8 Copyright Oracle Corporation, 1998. All rights reserved.

Using the COUNT FunctionUsing the COUNT Function

COUNT(COUNT(exprexpr) returns the number of ) returns the number of nonnull rows.nonnull rows.COUNT(COUNT(exprexpr) returns the number of ) returns the number of nonnull rows.nonnull rows.

SQL> SELECT COUNT(comm) 2 FROM emp 3 WHERE deptno = 30;

COUNT(COMM)----------- 4

Page 9: Copyright  Oracle Corporation, 1998. All rights reserved. 4 Aggregating Data Using Group Functions

4-9 Copyright Oracle Corporation, 1998. All rights reserved.

Group Functions and Null ValuesGroup Functions and Null Values

Group functions ignore null values in the Group functions ignore null values in the column.column.Group functions ignore null values in the Group functions ignore null values in the column.column.

SQL> SELECT AVG(comm) 2 FROM emp;

AVG(COMM)--------- 550

Page 10: Copyright  Oracle Corporation, 1998. All rights reserved. 4 Aggregating Data Using Group Functions

4-10 Copyright Oracle Corporation, 1998. All rights reserved.

Using the NVL Function with Group Functions

Using the NVL Function with Group Functions

The NVL function forces group functions The NVL function forces group functions to include null values.to include null values.The NVL function forces group functions The NVL function forces group functions to include null values.to include null values.

SQL> SELECT AVG(NVL(comm,0)) 2 FROM emp;

AVG(NVL(COMM,0))---------------- 157.14286

Page 11: Copyright  Oracle Corporation, 1998. All rights reserved. 4 Aggregating Data Using Group Functions

4-11 Copyright Oracle Corporation, 1998. All rights reserved.

Creating Groups of Data Creating Groups of Data

EMPEMP

““averageaveragesalary salary in EMPin EMPtable table

for each for each department”department”

2916.66672916.6667

21752175

1566.66671566.6667

DEPTNO SAL--------- --------- 10 2450 10 5000 10 1300 20 800 20 1100 20 3000 20 3000 20 2975 30 1600 30 2850 30 1250 30 950 30 1500 30 1250

DEPTNO AVG(SAL)

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

10 2916.6667

20 2175

30 1566.6667

Page 12: Copyright  Oracle Corporation, 1998. All rights reserved. 4 Aggregating Data Using Group Functions

4-12 Copyright Oracle Corporation, 1998. All rights reserved.

Creating Groups of Data: GROUP BY Clause

Creating Groups of Data: GROUP BY Clause

SELECT column, group_functionFROM table[WHERE condition][GROUP BY group_by_expression][ORDER BY column];

Divide rows in a table into smaller groups Divide rows in a table into smaller groups by using the GROUP BY clause.by using the GROUP BY clause.Divide rows in a table into smaller groups Divide rows in a table into smaller groups by using the GROUP BY clause.by using the GROUP BY clause.

Page 13: Copyright  Oracle Corporation, 1998. All rights reserved. 4 Aggregating Data Using Group Functions

4-13 Copyright Oracle Corporation, 1998. All rights reserved.

Using the GROUP BY Clause Using the GROUP BY Clause

All columns in the SELECT list that are not All columns in the SELECT list that are not in group functions must be in the GROUP in group functions must be in the GROUP BY clause.BY clause.

All columns in the SELECT list that are not All columns in the SELECT list that are not in group functions must be in the GROUP in group functions must be in the GROUP BY clause.BY clause.

SQL> SELECT deptno, AVG(sal) 2 FROM emp 3 GROUP BY deptno;

DEPTNO AVG(SAL)--------- --------- 10 2916.6667 20 2175 30 1566.6667

Page 14: Copyright  Oracle Corporation, 1998. All rights reserved. 4 Aggregating Data Using Group Functions

4-14 Copyright Oracle Corporation, 1998. All rights reserved.

Using the GROUP BY Clause Using the GROUP BY Clause

The GROUP BY column does not have to The GROUP BY column does not have to be in the SELECT list.be in the SELECT list.The GROUP BY column does not have to The GROUP BY column does not have to be in the SELECT list.be in the SELECT list.

SQL> SELECT AVG(sal) 2 FROM emp 3 GROUP BY deptno;

AVG(SAL)--------- 2916.6667 21751566.6667

Page 15: Copyright  Oracle Corporation, 1998. All rights reserved. 4 Aggregating Data Using Group Functions

4-15 Copyright Oracle Corporation, 1998. All rights reserved.

Grouping by More Than One ColumnGrouping by More Than One Column

EMPEMP

““sum salaries in sum salaries in the EMP tablethe EMP tablefor each job, for each job, grouped by grouped by department”department”

DEPTNO JOB SAL

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

10 MANAGER 2450

10 PRESIDENT 5000

10 CLERK 1300

20 CLERK 800

20 CLERK 1100

20 ANALYST 3000

20 ANALYST 3000

20 MANAGER 2975

30 SALESMAN 1600

30 MANAGER 2850

30 SALESMAN 1250

30 CLERK 950

30 SALESMAN 1500

30 SALESMAN 1250

JOB SUM(SAL)

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

CLERK 1300

MANAGER 2450

PRESIDENT 5000

ANALYST 6000

CLERK 1900

MANAGER 2975

CLERK 950

MANAGER 2850

SALESMAN 5600

DEPTNO

--------

10

10

10

20

20

20

30

30

30

Page 16: Copyright  Oracle Corporation, 1998. All rights reserved. 4 Aggregating Data Using Group Functions

4-16 Copyright Oracle Corporation, 1998. All rights reserved.

Using the GROUP BY Clause on Multiple Columns

Using the GROUP BY Clause on Multiple Columns

SQL> SELECT deptno, job, sum(sal) 2 FROM emp 3 GROUP BY deptno, job;

DEPTNO JOB SUM(SAL)--------- --------- --------- 10 CLERK 1300 10 MANAGER 2450 10 PRESIDENT 5000 20 ANALYST 6000 20 CLERK 1900...9 rows selected.

Page 17: Copyright  Oracle Corporation, 1998. All rights reserved. 4 Aggregating Data Using Group Functions

4-17 Copyright Oracle Corporation, 1998. All rights reserved.

Illegal Queries Using Group Functions

Illegal Queries Using Group Functions

Any column or expression in the SELECT Any column or expression in the SELECT list that is not an aggregate function must list that is not an aggregate function must be in the GROUP BY clause.be in the GROUP BY clause.

Any column or expression in the SELECT Any column or expression in the SELECT list that is not an aggregate function must list that is not an aggregate function must be in the GROUP BY clause.be in the GROUP BY clause.

SQL> SELECT deptno, COUNT(ename) 2 FROM emp;

SQL> SELECT deptno, COUNT(ename) 2 FROM emp;

SELECT deptno, COUNT(ename) *ERROR at line 1:ORA-00937: not a single-group group function

SELECT deptno, COUNT(ename) *ERROR at line 1:ORA-00937: not a single-group group function

Column missing in

the G

ROUP BY clause

Column missing in

the G

ROUP BY clause

Column missing in

the G

ROUP BY clause

Column missing in

the G

ROUP BY clause

Page 18: Copyright  Oracle Corporation, 1998. All rights reserved. 4 Aggregating Data Using Group Functions

4-18 Copyright Oracle Corporation, 1998. All rights reserved.

Illegal Queries Using Group Functions

Illegal Queries Using Group Functions

• You cannot use the WHERE clause to restrict groups.

• You use the HAVING clause to restrict groups.

• You cannot use the WHERE clause to restrict groups.

• You use the HAVING clause to restrict groups.

SQL> SELECT deptno, AVG(sal) 2 FROM emp 3 WHERE AVG(sal) > 2000 4 GROUP BY deptno;

SQL> SELECT deptno, AVG(sal) 2 FROM emp 3 WHERE AVG(sal) > 2000 4 GROUP BY deptno;

WHERE AVG(sal) > 2000 *ERROR at line 3:ORA-00934: group function is not allowed here

WHERE AVG(sal) > 2000 *ERROR at line 3:ORA-00934: group function is not allowed here

Cannot use th

e WHERE clause

Cannot use th

e WHERE clause

to re

strict g

roups

to restri

ct gro

ups

Cannot use th

e WHERE clause

Cannot use th

e WHERE clause

to re

strict g

roups

to restri

ct gro

ups

Page 19: Copyright  Oracle Corporation, 1998. All rights reserved. 4 Aggregating Data Using Group Functions

4-19 Copyright Oracle Corporation, 1998. All rights reserved.

Excluding Group ResultsExcluding Group Results

““maximummaximumsalarysalary

per departmentper departmentgreater thangreater than

$2900”$2900”

EMPEMP

50005000

30003000

28502850

DEPTNO SAL

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

10 2450

10 5000

10 1300

20 800

20 1100

20 3000

20 3000

20 2975

30 1600

30 2850

30 1250

30 950

30 1500

30 1250

DEPTNO MAX(SAL)

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

10 5000

20 3000

Page 20: Copyright  Oracle Corporation, 1998. All rights reserved. 4 Aggregating Data Using Group Functions

4-20 Copyright Oracle Corporation, 1998. All rights reserved.

Excluding Group Results: HAVING Clause

Excluding Group Results: HAVING Clause

Use the HAVING clause to restrict groupsUse the HAVING clause to restrict groups

– Rows are grouped.

– The group function is applied.

– Groups matching the HAVING clause are displayed.

Use the HAVING clause to restrict groupsUse the HAVING clause to restrict groups

– Rows are grouped.

– The group function is applied.

– Groups matching the HAVING clause are displayed.

SELECT column, group_functionFROM table[WHERE condition][GROUP BY group_by_expression][HAVING group_condition][ORDER BY column];

Page 21: Copyright  Oracle Corporation, 1998. All rights reserved. 4 Aggregating Data Using Group Functions

4-21 Copyright Oracle Corporation, 1998. All rights reserved.

Using the HAVING ClauseUsing the HAVING Clause

SQL> SELECT deptno, max(sal) 2 FROM emp 3 GROUP BY deptno 4 HAVING max(sal)>2900;

DEPTNO MAX(SAL)--------- --------- 10 5000 20 3000

Page 22: Copyright  Oracle Corporation, 1998. All rights reserved. 4 Aggregating Data Using Group Functions

4-22 Copyright Oracle Corporation, 1998. All rights reserved.

Using the HAVING ClauseUsing the HAVING Clause

SQL> SELECT job, SUM(sal) PAYROLL 2 FROM emp 3 WHERE job NOT LIKE 'SALES%' 3 GROUP BY job 4 HAVING SUM(sal)>5000 5 ORDER BY SUM(sal);

JOB PAYROLL--------- ---------ANALYST 6000MANAGER 8275

Page 23: Copyright  Oracle Corporation, 1998. All rights reserved. 4 Aggregating Data Using Group Functions

4-23 Copyright Oracle Corporation, 1998. All rights reserved.

Nesting Group FunctionsNesting Group Functions

SQL> SELECT max(avg(sal)) 2 FROM emp 3 GROUP BY deptno;

MAX(AVG(SAL))------------- 2916.6667

Display the maximum average salary. Display the maximum average salary. Display the maximum average salary. Display the maximum average salary.

Page 24: Copyright  Oracle Corporation, 1998. All rights reserved. 4 Aggregating Data Using Group Functions

4-24 Copyright Oracle Corporation, 1998. All rights reserved.

SummarySummary

SELECT column, group_functionFROM table[WHERE condition][GROUP BY group_by_expression][HAVING group_condition][ORDER BY column];

Page 25: Copyright  Oracle Corporation, 1998. All rights reserved. 4 Aggregating Data Using Group Functions

4-25 Copyright Oracle Corporation, 1998. All rights reserved.

Practice OverviewPractice Overview

• Showing different queries that use group functions

• Grouping by rows to achieve more than one result

• Excluding groups by using the HAVING clause

• Showing different queries that use group functions

• Grouping by rows to achieve more than one result

• Excluding groups by using the HAVING clause