The AVG function
The AVG()
function returns the average value of a numeric column. Similarly to the Sum function, it only works with numeric data.
The syntax for the `AVG()` function in [[The SELECT statement]] is:
SELECT AVG(column_name)
FROM table_name
WHERE condition;