Quick Ref.
Functions
date
number
string
Data Types
date
number
string
Compatibility
AVG(f)
Engine OK Alternative
mysql yes
oracle yes
postgres yes
sqlserver yes

AVG

AVG gives the average (the mean) of a whole column or a group of rows for a single column of values.

AVG is an aggregate function it is normally used with GROUP BY.

The mean of the values a, b, c is (a+b+c)/3, you divide by 3 because there are 3 numbers in this example.

NULL values do not contribute to the calculation.

  SELECT region, AVG(population)
    FROM bbc
   GROUP BY region
  
With a GROUP BY region statement each region shows up just once. The AVG column gives the average population per country for each region.

Results
See also: