- SQL Basics
- SQL Introduction
- SQL Syntax
- SQL Sample Database
- SQL SELECT
- SQL WHERE
- SQL ORDER BY
- SQL DISTINCT
- SQL LIMIT
- SQL FETCH
- SQL AND
- SQL OR
- SQL BETWEEN
- SQL IN
- SQL LIKE
- SQL IS NULL
- SQL Comparison Operators
- SQL Logical Operators
- SQL Alias
- SQL CASE
- Joins and Subqueries
- SQL INNER JOIN
- SQL LEFT JOIN
- SQL RIGHT JOIN
- SQL FULL OUTER JOIN
- SQL SELF JOIN
- SQL CROSS JOIN
- SQL Subquery
- SQL Correlated Subquery
- SQL UNION
- SQL INTERSECT
- SQL EXCEPT
- Aggregate Functions
- SQL AVG
- SQL COUNT
- SQL MAX
- SQL MIN
- SQL SUM
- SQL GROUP BY
- SQL HAVING
- SQL ROLLUP
- SQL CUBE
- SQL GROUPING SETS
- Database Management
- SQL CREATE DATABASE
- SQL ALTER DATABASE
- SQL DROP DATABASE
- SQL BACKUP DATABASE
- SQL SHOW DATABASES
- SQL SELECT DATABASE
- Table Management
- SQL CREATE TABLE
- SQL ALTER TABLE
- SQL ADD COLUMN
- SQL DROP COLUMN
- SQL DROP TABLE
- SQL TRUNCATE TABLE
- SQL SHOW TABLES
- SQL RENAME TABLE
- SQL Constraints
- SQL Primary Key
- SQL Foreign Key
- SQL UNIQUE Constraint
- SQL CHECK Constraint
- SQL NOT NULL Constraint
SQL AVG
The AVG() function in SQL is used to calculate the average value of a numeric column. It returns the mean (average) value of the specified column.
Syntax of SQL AVG
SELECT AVG(column_name)
FROM table_name
WHERE condition;
- AVG(): The aggregate function used to calculate the average of values.
- column_name: The name of the column whose average you want to calculate.
- table_name: The name of the table containing the column.
- condition: Optional condition to filter the rows for which the average is calculated.
Key Points
- The AVG() function only works with numeric data types (e.g.,
INT
,FLOAT
,DECIMAL
). - It ignores NULL values. If the column has
NULL
values, they are not included in the average calculation. - The result of AVG() is a decimal number, even if the column contains integer values.
Example of SQL AVG
Consider the following table:
Table: Employees
To calculate the average salary of all employees:
SELECT AVG(salary) AS average_salary
FROM employees;
Output:
Explanation:
- The average salary is calculated by summing all the values in the
salary
column and then dividing by the number of rows. - The result is
61000
which is the average salary of the employees.
SQL AVG with Conditions
You can apply a condition to calculate the average for a subset of data. For example, to find the average salary of employees with a salary greater than 55,000:
SELECT AVG(salary) AS average_salary
FROM employees
WHERE salary > 55000;
Output:
Explanation:
- Only employees with a salary greater than 55,000 are considered.
- The average of
60000
,65000
, and70000
is65000
.
SQL AVG with Grouping
You can also use AVG() with the GROUP BY
clause to calculate averages for different groups. For example, to find the average salary of employees in different departments (assuming you have a department
column):
SELECT department, AVG(salary) AS average_salary
FROM employees
GROUP BY department;
Output:
Explanation:
- The
AVG()
function calculates the average salary for each department separately, grouped by thedepartment
column.
Summary
The AVG() function in SQL is used to calculate the average value of a numeric column. It ignores NULL
values and can be used with conditions or in combination with GROUP BY
to calculate averages for different groups. The result is a decimal value, even if the column has integer data.