Revising Aggregations - Averages

Sort by

recency

|

412 Discussions

|

  • + 0 comments

    select avg(population) from CITY where district = 'California';

  • + 0 comments

    For MySQL Platform

    SELECT AVG(population) FROM city
    WHERE district = "california";
    
  • + 0 comments

    SELECT AVG(POPULATION) FROM CITY WHERE DISTRICT= 'California'

  • + 0 comments
    SELECT AVG(POPULATION) FROM CITY 
      WHERE DISTRICT ='California'
    
  • + 0 comments

    select AVG(population) from CITY where District = 'California';