Les 05

  • Uploaded by: Makokhan
  • 0
  • 0
  • May 2020
  • PDF

This document was uploaded by user and they confirmed that they have the permission to share it. If you are author or own the copyright of this book, please report to us by using this DMCA report form. Report DMCA


Overview

Download & View Les 05 as PDF for free.

More details

  • Words: 990
  • Pages: 27
5

Aggregating Data Using Group Functions

Copyright © Oracle Corporation, 2001. All rights

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

• • • •

5-2

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

Copyright © Oracle Corporation, 2001. All rights

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

The maximum salary in the EMPLOYEES table.

… 5-3

Copyright © Oracle Corporation, 2001. All rights

Types of Group Functions • • • • • • •

5-4

AVG COUNT MAX MIN STDDEV SUM VARIANCE

Copyright © Oracle Corporation, 2001. All rights

Group Functions Syntax

SELECT FROM [WHERE [GROUP BY [ORDER BY

5-5

[column,] group_function(column), ... table condition] column] column];

Copyright © Oracle Corporation, 2001. All rights

Using the AVG and SUM Functions You can use AVG and SUM for numeric data. SELECT AVG(salary), MAX(salary), MIN(salary), SUM(salary) FROM employees WHERE job_id LIKE '%REP%';

5-6

Copyright © Oracle Corporation, 2001. All rights

Using the MIN and MAX Functions You can use MIN and MAX for any data type. SELECT MIN(hire_date), MAX(hire_date) FROM employees;

5-7

Copyright © Oracle Corporation, 2001. All rights

Using the COUNT Function COUNT(*) returns the number of rows in a table. SELECT COUNT(*) FROM employees WHERE department_id = 50;

5-8

Copyright © Oracle Corporation, 2001. All rights

Using the COUNT Function •

COUNT(expr) returns the number of rows with non-null values for the expr.



Display the number of department values in the EMPLOYEES table, excluding the null values.

SELECT COUNT(commission_pct) FROM employees WHERE department_id = 80;

5-9

Copyright © Oracle Corporation, 2001. All rights

Using the DISTINCT Keyword • •

COUNT(DISTINCT expr) returns the number of distinct non-null values of the expr. Display the number of distinct department values in the EMPLOYEES table. SELECT COUNT(DISTINCT department_id) FROM employees;

5-10

Copyright © Oracle Corporation, 2001. All rights

Group Functions and Null Values Group functions ignore null values in the column. SELECT AVG(commission_pct) FROM employees;

5-11

Copyright © Oracle Corporation, 2001. All rights

Using the NVL Function with Group Functions The NVL function forces group functions to include null values. SELECT AVG(NVL(commission_pct, 0)) FROM employees;

5-12

Copyright © Oracle Corporation, 2001. All rights

Creating Groups of Data EMPLOYEES 4400

The average salary 3500 in EMPLOYEES table 6400 for each department. 9500

10033



5-13

Copyright © Oracle Corporation, 2001. All rights

Creating Groups of Data: The GROUP BY Clause Syntax

SELECT FROM [WHERE [GROUP BY [ORDER BY

column, group_function(column) table condition] group_by_expression] column];

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

5-14

Copyright © Oracle Corporation, 2001. All rights

Using the GROUP BY Clause All columns in the SELECT list that are not in group functions must be in the GROUP BY clause. SELECT department_id, AVG(salary) FROM employees GROUP BY department_id ;

5-15

Copyright © Oracle Corporation, 2001. All rights

Using the GROUP BY Clause The GROUP BY column does not have to be in the SELECT list. SELECT AVG(salary) FROM employees GROUP BY department_id ;

5-16

Copyright © Oracle Corporation, 2001. All rights

Grouping by More Than One Column EMPLOYEES



5-17

“Add up the salaries in the EMPLOYEES table for each job, grouped by department.

Copyright © Oracle Corporation, 2001. All rights

Using the GROUP BY Clause on Multiple Columns SELECT department_id dept_id, job_id, SUM(salary) FROM employees GROUP BY department_id, job_id ;

5-18

Copyright © Oracle Corporation, 2001. All rights

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. SELECT department_id, COUNT(last_name) FROM employees; SELECT department_id, COUNT(last_name) * ERROR at line 1: ORA-00937: not a single-group group function

Column missing in the GROUP BY clause 5-19

Copyright © Oracle Corporation, 2001. All rights

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 group functions in the WHERE clause.

SELECT FROM WHERE GROUP BY

department_id, AVG(salary) employees AVG(salary) > 8000 department_id;

WHERE

AVG(salary) > 8000 * ERROR at line 3: ORA-00934: group function is not allowed here

Cannot use the WHERE clause to restrict groups 5-20

Copyright © Oracle Corporation, 2001. All rights

Excluding Group Results EMPLOYEES



5-21

The maximum salary per department when it is greater than $10,000

Copyright © Oracle Corporation, 2001. All rights

Excluding Group Results: The HAVING Clause Use the HAVING clause to restrict groups: 1. Rows are grouped. 2. The group function is applied. 3. Groups matching the HAVING clause are displayed. SELECT FROM [WHERE [GROUP BY [HAVING [ORDER BY

5-22

column, group_function table condition] group_by_expression] group_condition] column];

Copyright © Oracle Corporation, 2001. All rights

Using the HAVING Clause

SELECT FROM GROUP BY HAVING

5-23

department_id, MAX(salary) employees department_id MAX(salary)>10000 ;

Copyright © Oracle Corporation, 2001. All rights

Using the HAVING Clause

SELECT FROM WHERE GROUP BY HAVING ORDER BY

5-24

job_id, SUM(salary) PAYROLL employees job_id NOT LIKE '%REP%' job_id SUM(salary) > 13000 SUM(salary);

Copyright © Oracle Corporation, 2001. All rights

Nesting Group Functions Display the maximum average salary. SELECT MAX(AVG(salary)) FROM employees GROUP BY department_id;

5-25

Copyright © Oracle Corporation, 2001. All rights

Summary

In this lesson, you should have learned how to:

• • •

Use the group functions COUNT, MAX, MIN, AVG Write queries that use the GROUP BY clause Write queries that use the HAVING clause

SELECT FROM [WHERE [GROUP BY [HAVING [ORDER BY

5-26

column, group_function(column) table condition] group_by_expression] group_condition] column];

Copyright © Oracle Corporation, 2001. All rights

Practice 5 Overview This practice covers the following topics:

• • •

5-27

Writing queries that use the group functions Grouping by rows to achieve more than one result Excluding groups by using the HAVING clause

Copyright © Oracle Corporation, 2001. All rights

Related Documents

Les 05
November 2019 9
Les 05
May 2020 5
Les 05
May 2020 7
Les 05
November 2019 7
Les 05
May 2020 15
Les 05
October 2019 7

More Documents from ""

Les 05
May 2020 15
Les 07
May 2020 12
Less05 Storage Tb3
May 2020 16
Les 09
May 2020 13
Les 02
May 2020 1