Lecture08_IDB
Lecture08_IDB
• AVG
• COUNT
• MAX
• MIN
• STDDEV
• SUM
• VARIANCE
Using Group Functions
MIN(HIRED MAX(HIRED
--------- ---------
17-DEC-80 12-JAN-83
Using the COUNT Function
COUNT(*)
---------
6
Using the COUNT Function
COUNT(COMM)
-----------
4
Group Functions and Null Values
AVG(COMM)
---------
550
Using the NVL Function with Group
Functions
AVG(NVL(COMM,0))
----------------
157.14286
Creating Groups of 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 Groups of Data: GROUP BY
Clause
Divide rows in a table into smaller groups by using the GROUP BY clause.
Using the GROUP BY Clause
All columns in the SELECT list that are not in group functions must be in the
GROUP BY clause.
DEPTNO AVG(SAL)
--------- ---------
10 2916.6667
20 2175
30 1566.6667
Using the GROUP BY Clause
AVG(SAL)
---------
2916.6667
2175
1566.6667
Grouping by More Than One Column
EMP
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 the GROUP BY Clause on Multiple Columns
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)
22 FROM emp; P B
BYY c
cla
lauussee
FROM emp;
n t h
hee OU P
G
G R
R OU
m ii n g
ssssiing iin t
olu
Colu
C mmnn m
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 Queries Using Group Functions
SQL>
SQL> SELECT
SELECT deptno,
deptno, AVG(sal)
AVG(sal)
22 FROM
FROM emp
emp ussee
33 WHERE
WHERE AVG(sal)
AVG(sal) >> 2000
2000 ccllaau
R
R EE
44 GROUP
GROUP BY
BY deptno;
deptno; H
H EE ss
W
W uupp
t e o
hhe t ggrro
WHERE
WHERE AVG(sal)
AVG(sal) >> 2000
t
2000 ussee trriicct
** oott u rreesst
n
nnn ttoo
ERROR at line 3:C
ERROR at line 3:
C a
a
ORA-00934:
ORA-00934: group
group function
function is
is not
not allowed
allowed here
here
Excluding Group 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 Group Results: HAVING Clause
DEPTNO MAX(SAL)
--------- ---------
10 5000
20 3000
Using the HAVING Clause
JOB PAYROLL
--------- ---------
ANALYST 6000
MANAGER 8275
Nesting Group Functions
MAX(AVG(SAL))
-------------
2916.6667
Order of Evaluation
1. https://www.db-book.com/db6/slide-dir/index.html
2. https://docs.oracle.com/en/database/oracle/oracle-database/20/sqlrf/SQL-Sta
ndards.html#GUID-BCCCFF75-D2A4-43AD-8CAF-C3C97D92AC63
3. https://www.slideshare.net/HaaMeemMohiyuddin1/data-knowledge-and-infor
mation
4. https://www.slideshare.net/tabinhasan/from-data-to-wisdom
5. https://www.slideshare.net/thinnaphat.bo/