Japan Population

Sort by

recency

|

436 Discussions

|

  • + 0 comments

    MYSQL

    select sum(population)
    from city
    where countrycode = 'jpn';
    
  • + 0 comments

    SELECT SUM(population) FROM CITY WHERE COUNTRYCODE = 'JPN';

  • + 0 comments

    WITH CTE AS ( SELECT countrycode, SUM(population) AS total_pop FROM city GROUP BY countrycode ) SELECT total_pop FROM CTE WHERE countrycode = 'JPN';

  • + 0 comments

    select sum(population) from city where countrycode = 'JPN'

  • + 0 comments
    SELECT SUM(population) FROM city where countryCode = 'JPN'