Average Population

Sort by

recency

|

737 Discussions

|

  • + 0 comments

    SELECT round(avg(population)) FROM city;

    Easy solution

  • + 0 comments

    select floor(avg(POPULATION)) as average_population_per_city from CITY;

  • + 0 comments

    SELECT FLOOR(AVG(Population)) AS average_population FROM CITY;

  • + 0 comments

    select round(avg(population)) from city;

  • + 0 comments

    MYSQL

    SELECT round(avg(population))
    from city;