Download as ppt, pdf, or txt
Download as ppt, pdf, or txt
You are on page 1of 26

Aggregating Data

Using Group Functions


Objectives
Objectives

• After completing this lesson, you


should be able to do the following:
–– Identify
Identify the
the available
available group
group functions
functions
–– Describe
Describe the
the use
use of
of group
group functions
functions
–– Group
Group data
data using
using the
the GROUP
GROUP BY BY clause
clause
–– Include
Include or
or exclude
exclude grouped
grouped rows
rows by
by
using
using the
the HAVING
HAVING clause
clause
What
What Are
Are Group
Group Functions?
Functions?
•• Group
Group functions
functions operate
operate on
on sets
sets of
of rows
rows to
to
give
give one
one result
result per
per group.
group.
EMP
DEPTNO SAL
--------- ---------
10 2450
10 5000
10 1300
20 800
20 1100
20 3000 “maximum MAX(SAL)
20 3000 salary in ---------
20 2975 the EMP table” 5000
30 1600
30 2850
30 1250
30 950
30 1500
30 1250
Types
Types of
of Group
Group Functions
Functions

–– AVG
AVG
–– COUNT
COUNT
–– MAX
MAX
–– MIN
MIN
–– STDDEV
STDDEV
–– SUM
SUM
–– VARIANCE
VARIANCE
Using
Using Group
Group Functions
Functions

SELECT [column,] group_function(column)


FROM table
[WHERE condition]
[GROUP BY column]
[ORDER BY column];
Using
Using AVG
AVG and
and SUM
SUM Functions
Functions
• 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%';

AVG(SAL) MAX(SAL) MIN(SAL) SUM(SAL)


-------- --------- --------- ---------
1400 1600 1250 5600
Using
Using MIN
MIN and
and MAX
MAX Functions
Functions
• 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
Using
Using the
the COUNT
COUNT Function
Function
• COUNT(*) returns the number of rows
in a table.
SQL> SELECT COUNT(*)
2 FROM emp
3 WHERE deptno = 30;

COUNT(*)
---------
6
Using
Using the
the COUNT
COUNT Function
Function
• COUNT(expr) returns the number of
nonnull rows.
SQL> SELECT COUNT(comm)
2 FROM emp
3 WHERE deptno = 30;

COUNT(COMM)
-----------
4
Group
Group Functions
Functions and and Null
Null
Values
Values
• Group functions ignore null values in
the column.
SQL> SELECT AVG(comm)
2 FROM emp;

AVG(COMM)
---------
550
Using
Using the
the NVL
NVL Function
Function
with
with Group
Group Functions
Functions
• The NVL function forces group functions to
include null values.
SQL> SELECT AVG(NVL(comm,0))
2 FROM emp;

AVG(NVL(COMM,0))
----------------
157.14286
Creating
Creating Groups
Groups of
of Data
Data
EMP
DEPTNO SAL
--------- ---------
10 2450
10 5000 2916.6667
10 1300
20 800 “average DEPTNO AVG(SAL)
20 1100 salary
------- ---------
20 3000 2175 in EMP
20 3000 table 10 2916.6667
20 2975 for each 20 2175
30 1600 department” 30 1566.6667
30 2850
30 1250 1566.6667
30 950
30 1500
30 1250
Creating
Creating Groups
Groups of
of Data:
Data:
GROUP
GROUP BYBY Clause
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


groups by using the GROUP BY
clause.
Using
Using the
the GROUP
GROUP BY
BY Clause
Clause
• All columns in the SELECT list that are
not in group functions must be in the
GROUP 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
Using
Using the
the GROUP
GROUP BY
BY Clause
Clause
• The GROUP BY column does not have
to be in the SELECT list.
SQL> SELECT AVG(sal)
2 FROM emp
3 GROUP BY deptno;

AVG(SAL)
---------
2916.6667
2175
1566.6667
Grouping
Grouping by
by More
More
EMP
Than
Than One
One Column
Column
DEPTNO JOB SAL
--------- --------- ---------
10 MANAGER 2450
DEPTNO JOB SUM(SAL)
10 PRESIDENT 5000
-------- --------- ---------
10 CLERK 1300
10 CLERK 1300
20 CLERK 800 “sum salaries in 10 MANAGER 2450
20 CLERK 1100 the EMP table
10 PRESIDENT 5000
20 ANALYST 3000 for each job,
20 ANALYST 6000
20 ANALYST 3000 grouped by
20 CLERK 1900
20 MANAGER 2975 department”
20 MANAGER 2975
30 SALESMAN 1600
30 CLERK 950
30 MANAGER 2850
30 MANAGER 2850
30 SALESMAN 1250
30 SALESMAN 5600
30 CLERK 950
30 SALESMAN 1500
30 SALESMAN 1250
Using
Using the
the GROUP
GROUP BY BY Clause
Clause
on
on Multiple
Multiple Columns
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.
Illegal
Illegal Queries
Queries
Using
Using Group
Group Functions
Functions
• Any column or expression in the
SELECT list that is not an aggregate
function must be in the GROUP BY
clause.
SQL>
SQL> SELECT
SELECT deptno,
deptno, COUNT(ename)
COUNT(ename) e Y c
cllaau
u ssee
22 FROM
FROM emp;
emp;
G ROOUUP
PBB Y
g t
iinn thh e
e G R
miisss
siinn g
mnn m
Coolluum
C
SELECT
SELECT deptno,
deptno, COUNT(ename)
COUNT(ename)
**
ERROR
ERROR at
at line
line 1:
1:
ORA-00937:
ORA-00937: not
not aa single-group
single-group group
group function
function
Illegal
Illegal Queries
Queries
Using
Using Group
Group Functions
Functions
–– You
You cannot
cannot use
use the
the WHERE
WHERE clause
clause toto restrict
restrict
groups.
groups.
–– You
You use
use the
the HAVING
HAVING clause
clause to
to restrict
restrict groups.
groups.
SQL>
SQL> SELECT
SELECT deptno,
deptno, AVG(sal)
AVG(sal)
s
see
22 FROM
FROM emp
emp l u
aau
33 WHERE AVG(sal)
AVG(sal) >> 2000 c
c l
WHERE 2000
R EE
R ss
44 GROUP
GROUP BY
BY deptno;
deptno; HEE
H uupp
e W
W r oo
h e
tth ctt g g r
WHERE AVG(sal) > 2000 s
see r
r iic
WHERE AVG(sal) > 2000 u u
tt reess t
t
** n
noo r
ann t
t o
o
ERROR
ERROR at
at line
line 3:Ca
3:C
ORA-00934: group function is not allowed here
ORA-00934: group function is not allowed here
Excluding
Excluding Group
Group Results
Results
EMP
DEPTNO SAL
--------- ---------
10 2450
10 5000 5000
10 1300
20 800
20 1100 “maximum DEPTNO MAX(SAL)
20 3000 salary --------- ---------
3000 per department
20 3000 10 5000
20 2975 greater than 20 3000
30 1600 $2900”
30 2850
30 1250
30 950
2850
30 1500
30 1250
Excluding
Excluding Group
Group Results:
Results:
HAVING
HAVING Clause
Clause
• Use the HAVING clause to restrict
groups
•• Rows
Rows are
are grouped.
grouped.
•• The
The group
group function
function is
is applied.
applied.
•• Groups
Groups matching
matching the
the HAVING
HAVING clause
clause are
are
displayed.
displayed.
SELECT column, group_function
FROM table
[WHERE condition]
[GROUP BY group_by_expression]
[HAVING group_condition]
[ORDER BY column];
Using
Using the
the HAVING
HAVING Clause
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
Using
Using the
the HAVING
HAVING Clause
Clause

SQL> SELECT job, SUM(sal) PAYROLL


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

JOB PAYROLL
--------- ---------
ANALYST 6000
MANAGER 8275
Nesting
Nesting Group
Group Functions
Functions
• Display the maximum average salary.

SQL> SELECT max(avg(sal))


2 FROM emp
3 GROUP BY deptno;

MAX(AVG(SAL))
-------------
2916.6667
Summary
Summary
SELECT column, group_function(column)
FROM table
[WHERE condition]
[GROUP BY group_by_expression]
[HAVING group_condition]
[ORDER BY column];

• Order of evaluation of the clauses:


–– WHERE
WHERE clause
clause
–– GROUP
GROUP BY
BY clause
clause
–– HAVING
HAVING clause
clause
Practice
Practice Overview
Overview
–– Showing
Showing different
different queries
queries that
that use
use group
group functions
functions
–– Grouping
Grouping by
by rows
rows to
to achieve
achieve more
more than
than one
one result
result
–– Excluding
Excluding groups
groups byby using
using the
the HAVING
HAVING clause
clause

You might also like