Autor YouCode - http://www.youcode.com.ar/sql/avg-function-249
The AVG() function returns the average value of a numeric column.
AVG Example
SELECT AVG(Price) AS PriceAverage FROM Products;
http://www.youcode.com.ar/sql/avg-function-249