26
Aggregating Data Aggregating Data Using Group Using Group Functions Functions

Aggregating Data Using Group Functions

Embed Size (px)

DESCRIPTION

Aggregating Data Using Group Functions. Objectives. After completing this lesson , you should be able to do the following: Identify the available group functions Describe the use of group functions Group data using the GROUP BY clause - PowerPoint PPT Presentation

Citation preview

Page 1: Aggregating Data Using Group Functions

Aggregating DataAggregating DataUsing Group Using Group

FunctionsFunctions

Page 2: Aggregating Data Using Group Functions

ObjectivesObjectives

After completing this lesson , you After completing this lesson , you should be able to do the following:should be able to do the following:

• Identify the available group functionsIdentify the available group functions• Describe the use of group functions Describe the use of group functions • Group data using the GROUP BY Group data using the GROUP BY

clause clause • Include or exclude grouped rows by Include or exclude grouped rows by

using the HAVING clauseusing the HAVING clause

Page 3: Aggregating Data Using Group Functions

What Are Group What Are Group Functions?Functions?• Group functions operate on sets of rows to Group functions operate on sets of rows to

give one result per group.give one result per group.

DEPTNO SAL------------ -------------------- 10

2450 10

5000 10

1300 20

800 20 1100 20 3000 20 2975 30 1600 30 2850 30 1250 30 950 30

1500 30 1500 30 1250

EMP

MAX (SAL)

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

5000

“Maximum

Salary in

The EMP table”

Page 4: Aggregating Data Using Group Functions

Types of Group Types of Group FunctionsFunctions

• AVGAVG• COUNTCOUNT• MAXMAX• MINMIN• STDDEVSTDDEV• SUMSUM• VARIANCEVARIANCE

Page 5: Aggregating Data Using Group Functions

Using Group FunctionsUsing Group Functions

SELECT [ column , ] group_function ( column )FROM table1 [ WHERE condition][GROUP BY column];[ORDER BY column];

Page 6: Aggregating Data Using Group Functions

Using AVG and SUM Using AVG and SUM FunctionsFunctions

You can use AVG and SUM for numeric You can use AVG and SUM for numeric datadata

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

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

Page 7: Aggregating Data Using Group Functions

Using MIN and MAX Using MIN and MAX Functions Functions

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

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

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

Page 8: Aggregating Data Using Group Functions

Using the COUNT Using the COUNT FunctionFunction

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

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

6

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

Page 9: Aggregating Data Using Group Functions

Using the COUNT FunctionUsing the COUNT Function

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

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

4

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

Page 10: Aggregating Data Using Group Functions

Group Functions and Group Functions and Null ValuesNull Values

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

SQL> SELECT AVG ( comm ) 2 FROM emp ;

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

550

Page 11: Aggregating Data Using Group Functions

Using the NVL FunctionUsing the NVL Function with Group Functions with Group Functions

The NVL function forces group functionsThe 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 12: Aggregating Data Using Group Functions

Creating Groups of DataCreating Groups of Data

DEPTNO SAL------------ -------------------- 10

2450 10

5000 10

1300 20

800 20 1100 20 3000 20 2975 30 1600 30 2850 30 1250 30 950 30

1500 30 1500 30 1250

EMP

DEPTNO AVG (SAL)

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

10 2916.6667

20 2175

30 1566.6667

“average salary

in EMP table

for each department”

2916.6667

2175

1566.6667

Page 13: Aggregating Data Using Group Functions

Creating Groups of Data:Creating Groups of Data:GROUP BY ClauseGROUP BY Clause

SELECT column , group_function(column)FROM table[WHERE condition ][GROUP BY group_by_expression ][ORDER BY column ] ;

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

Page 14: Aggregating Data Using Group Functions

Using the GROUP BY Using the GROUP BY clauseclause

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

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

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

Page 15: Aggregating Data Using Group Functions

Using the GROUP BY Using the GROUP BY clauseclause

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

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

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

Page 16: Aggregating Data Using Group Functions

Grouping by More Grouping by More Than OneThan One ColumnColumn

DEPTNO JOB SAL------------ --------- --------------------- 10 MANAGER

2450 10 PRESIDENT

5000 10 CLERK 1300 20 CLERK 800 20 CLERK 1100 20 ANALYST 3000 20 ANALYST 2975 30 MANAGER 1600 30 SALESMAN 2850 30 MANAGER 1250 30 SALESMAN 950 30 CLERK 1500 30 SALESMAN 1500 30 SALESMAN 1250

EMP

“sum salaries in the EMP table for each job, grouped

by department”

DEPTNO JOB SUM(SAL)

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

10 CLERK 1300

10 MANAGER 2450

10 PRESIDENT 5000

20 ANALYST 6000

20 CLERK 1900

20 MANAGER 2975

30 CLERK 950

30 MANAGER 2850

30 SALESMAN 5600

Page 17: Aggregating Data Using Group Functions

Using the GROUP BY clause Using the GROUP BY clause

on Multiple Columnson Multiple ColumnsSQL> 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 18: Aggregating Data Using Group Functions

lllegal Queries lllegal Queries Using Group FunctionsUsing Group Functions

• Any column or expression in the Any column or expression in the SELECT list that is not an aggregate SELECT list that is not an aggregate functions must be in the GROUP BY functions must be in the GROUP BY clause.clause.SQL> SELECT deptno, COUNT (ename) 2 FROM emp;

SELECT deptno, COUNT (ename)*

ERROR at line 1:ORA-00937: not a single-group group function

Page 19: Aggregating Data Using Group Functions

lllegal Querieslllegal QueriesUsing Group Functions Using Group Functions

• You cannot use the WHERE clause You cannot use the WHERE clause to restrict groups.to restrict groups.

• You use the HAVING clause to You use the HAVING clause to restrict groups.restrict groups.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

Page 20: Aggregating Data Using Group Functions

Excluding Group ResultsExcluding Group Results

DEPTNO SAL------------ -------------------- 10

2450 10

5000 10

1300 20

800 20 1100 20 3000 20 2975 30 1600 30 2850 30 1250 30 950 30

1500 30 1500 30 1250

EMP

“maximum

Salary

Per department

Greater than

$2900”

5000

3000

2850

DEPTNO MAX (SAL)

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

10 5000

20 3000

Page 21: Aggregating Data Using Group Functions

Excluding Group Results:Excluding Group Results:HAVING ClauseHAVING Clause

Use the HAVING clause to restrict Use the HAVING clause to restrict groupsgroups

• Rows are grouped.Rows are grouped.• The group function is applied.The group function is applied.• Groups matching the HAVING Groups matching the HAVING

clause are displayed.clause are displayed.SELECT column, group_functionFROM table[WHERE condition][GROUP BY group_by_expression][ORDER BY column];

Page 22: Aggregating Data Using Group Functions

Using the HAVING Using the HAVING ClauseClause

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 23: Aggregating Data Using Group Functions

Using the HAVING Using the HAVING ClauseClause

SQL> SELECT job, SUM (sal) PAYROLL 2 FROM emp 3 WHERE job NOT LIKE ‘sales%’ 4 GROUP BY SUM (sal) > 5000 5 ORDER By SUM (sal) ;

JOB PAYROLL------------- -------------- ANALYST 6000 MANAGR 8275

Page 24: Aggregating Data Using Group Functions

Nesting Group FunctionsNesting Group Functions

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

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

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

Page 25: Aggregating Data Using Group Functions

SummarySummary

Order of evaluation of the clause:Order of evaluation of the clause:• WHERE clauseWHERE clause• GROUP BY clauseGROUP BY clause• HAVING clauseHAVING clause

SQL> SELECT column, group_function (column)FROM table[WHERE condition][GROUP BY group_by_expression][HAVING group_condition][ORDER BY column];

Page 26: Aggregating Data Using Group Functions

Practice OverviewPractice Overview

• Showing different queries that use Showing different queries that use group functionsgroup functions

• Grouping by rows to achieve more Grouping by rows to achieve more than one resultthan one result

• Excluding group by using the Excluding group by using the HAVING clauseHAVING clause