AVG – Return avarage number – SQL Aggregate Functions
AVG function returns average number from a specific column.
example: to find average value of employees’ salary.
SELECT AVG(salary) FROM tbSalaryTable; AVG(salary) ----------------------------------------- 254000
Posted in Aggregate Functions