1 / 25

Aggregating Data Using Group Functions

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

nevina
Download Presentation

Aggregating Data Using Group Functions

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Aggregating Data Using Group Functions

  2. 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 • Include or exclude grouped rows by using the HAVING clause

  3. What Are Group Functions? • Group functions operate on sets of rows to give one result per group. Employee dept_nbr salary --------- --------- 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(salary) ----------- 5000 “maximum salary in the Employee table”

  4. Types of Group Functions • AVG • COUNT • MAX • MIN • STDDEV • SUM • VARIANCE

  5. Using Group Functions SELECT [column,] group_function(column) FROMtable [WHERE condition] [GROUP BY column] [ORDER BY column];

  6. Using AVG & SUM Functions • You can use AVG and SUM for numeric data. MySQL>SELECTAVG(salary), MAX(salary), -> MIN(salary), SUM(salary) ->FROMemployee ->WHERE job LIKE 'salaryes'; AVG(salary) MAX(salary) MIN(salary) SUM(salary) ----------- ---------- ----------- ----------- 1400 1600 1250 5600

  7. Using MIN & MAX Functions • You can use MIN and MAX for any datatype. MySQL>SELECT MIN(hire_date), MAX(hire_date) ->FROMemployee; MIN(HIRED) MAX(HIRED) --------- --------- 17-DEC-80 12-JAN-83

  8. Using the COUNT Function • COUNT(*) returns the number of rows in a table. MySQL>SELECT COUNT(*) ->FROMemployee ->WHEREdept_nbr= 30; COUNT(*) --------- 6

  9. Using the COUNT Function • COUNT(expr) returns the number of nonnull rows. MySQL>SELECTCOUNT(commission) ->FROMemployee ->WHEREdept_nbr= 30; COUNT(Commission) ----------------- 4

  10. Group Functions & Null Values • Group functions ignore null values in the column. MySQL>SELECT AVG(commission) ->FROM employee; AVG(Commission) ---------------- 550

  11. Using the NVL Function withGroup Functions • The NVL function forces group functions to include null values. MySQL>SELECT AVG(IFNULL(commission,0)) ->FROM employee; Average_Commission ------------------ 157.14286

  12. Creating Groups of Data Employee dept_nbr salary --------- -------- 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 2916.6667 dept_nbr AVG(salary) -------- ----------- 10 2916.6667 202175 30 1566.6667 “averagesalary in Employeetable for each department” 2175 1566.6667

  13. Creating Groups of Data:GROUP BY Clause • Divide rows in a table into smaller groups by using the GROUP BY clause. SELECT column, group_function(column) FROMtable [WHERE condition] [GROUP BY group_by_expression] [ORDER BY column];

  14. Using the GROUP BY Clause • All columns in the SELECT list that are not in group functions must be in the GROUP BY clause. MySQL>SELECT dept_nbr, AVG(salary) ->FROM employee ->GROUP BY dept_nbr; dept_nbr AVG(salary) --------- --------- 10 2916.6667 20 2175 30 1566.6667

  15. Using the GROUP BY Clause • The GROUP BY column does not have to be in the SELECT list. MySQL>SELECT AVG(salary) ->FROM employee ->GROUP BY dept_nbr ; AVG(salary) --------- 2916.6667 2175 1566.6667

  16. Grouping by More Than One Column Employee dept_nbr Job salary --------- --------- --------- 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 dept_nbr -------- 10 10 10 20 20 20 30 30 30 Job SUM(salary) --------- --------- Clerk 1300 Manager 2450 President 5000 Analyst 6000 Clerk 1900 Manager 2975 Clerk 950 Manager 2850 Salesman 5600 “sum salaries in the Employee table for each job, grouped by department”

  17. Using the GROUP BY Clause on Multiple Columns MySQL> SELECT dept_nbr, job, sum(salary) -> FROM employee -> GROUP BY dept_nbr, job; dept_nbr job SUM(salary) --------- --------- ----------- 10 Clerk 1300 10 Manager 2450 10 President 5000 20 Analyst 6000 20 Clerk 1900 ... 9 rows selected.

  18. Illegal Queries Using Group Functions • Any column or expression in the SELECT list that is not an aggregate function must be in the GROUP BY clause. MySQL> SELECT dept_nbr, COUNT(name) -> FROM employee; Column missing in the GROUP BY clause dept_nbrcount(name) -------- ----------- 20 14

  19. Illegal Queries Using Group Functions • You cannot use the WHERE clause to restrict groups. • You use the HAVING clause to restrict groups. MySQL> SELECT dept_nbr, AVG(salary) -> FROM employee -> WHEREAVG(salary) > 2000 -> GROUP BY dept_nbr; Cannot use the WHERE clause to restrict groups ERROR 111: Invalid use of group functions

  20. 5000 3000 2850 Excluding Group Results EMP dept_nbr salary --------- --------- 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 “maximumsalaryper department greater than$2900” dept_nbr MAX(salary) --------- ---------- 10 5000 20 3000

  21. Excluding Group Results: HAVING Clause • Use the HAVING clause to restrict groups • Rows are grouped. • The group function is applied. • Groups matching the HAVING clause are displayed. SELECT column, group_function FROMtable [WHERE condition] [GROUP BY group_by_expression] [HAVING group_condition] [ORDER BY column];

  22. Using the HAVING Clause MySQL> SELECT dept_nbr, max(salary) -> FROM employee -> GROUP BY dept_nbr -> HAVING max(salary)>2900; dept_nbr MAX(salary) --------- ----------- 10 5000 20 3000

  23. Using the HAVING Clause 5 HAVING SUM(salary)>5000 MySQL> SELECT job, SUM(salary) PAYROLL -> FROM employee -> WHERE job NOT LIKE 'salaryies' -> GROUP BYjob -> HAVING SUM(salary)>5000 -> ORDER BYSUM(salary); JOB PAYROLL --------- --------- Analyst 6000 Manager 8275

  24. Nesting Group Functions • Display the maximum average salary. MySQL> SELECT max(avg(salary)) -> FROM employee -> GROUP BY dept_nbr; MAX(AVG(salary)) ------------- 2916.6667

  25. Summary • Order of evaluation of the clauses: • WHERE clause • GROUP BY clause • HAVING clause SELECT column, group_function(column) FROMtable [WHERE condition] [GROUP BY group_by_expression] [HAVING group_condition] [ORDER BY column];

More Related