Revising Aggregations - Averages

Sort by

recency

|

405 Discussions

|

  • + 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) as 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';