SQL Aggregate Functions PDF
SQL Aggregate Functions PDF
SELECT *
FROM employee
WHERE emp_salary > AVG(emp_salary);
ERROR
COUNT( )
• If a manager needs know how many employees work in
the organization, COUNT(*) can be used to produce
this information.
• The COUNT(*) function counts all rows in a table.
• The wild card asterisk (*) would be used as the
parameter in the function.
SELECT COUNT(*)
FROM employee;
COUNT(*)
--------
8
COUNT( )
• The result table for the COUNT(*) function
is a single scalar value.
• Notice that the result table has a column
heading that corresponds to the name of the
aggregate function specified in the SELECT
clause.
• The output column can be assigned a more
meaningful column name as is shown in the
revised query .
COUNT( )
• This is accomplished by simply listing the desired
column name inside double-quotes after the
aggregate function specification.
Number of Employees
---------------------------
8
COUNT( )
• COUNT(*) is used to count all the rows in a table.
• COUNT(column name) does almost the same thing.
The difference is that you may define a specific
column to be counted.
• When column name is specified in the COUNT
function, rows containing a NULL value in the
specified column are omitted.
• A NULL value stands for “unknown” or
“unknowable” and must not be confused with a blank
or zero.
COUNT ( )
SELECT COUNT(emp_superssn) "Number Supervised
Employees"
FROM employee;
$35,500
More Examples
• What is the average salary offered to employees?
• This question asks you to incorporate the concept of
computing the average of the distinct salaries paid by the
organization.
• The same query with the DISTINCT keyword in the
aggregate function returns a different average.
SELECT AVG(DISTINCT emp_salary) "Average Employee
Salary"
FROM employee;
FROM employee;
Total Salary
------------
$284,000
More Examples
• If management is preparing a budget for various
departments, you may be asked to write a query to
compute the total salary for different departments.
• The query shown here will compute the total
emp_salary for employees assigned to department
#7.
SELECT SUM(emp_salary) "Total Salary Dept 7"
FROM employee
WHERE emp_dpt_number = 7;
MIN(EMP_LAST_NAME) MAX(EMP_LAST_NAME)
------------------------- -----------------------
Amin Zhu
Using GROUP BY with Aggregate Functions