Japan Population

Sort by

recency

|

429 Discussions

|

  • + 0 comments

    select sum(population) from CITY where countrycode='JPN';

  • + 0 comments

    For MySQL Platform

    SELECT SUM(population) FROM city
    WHERE countrycode = "JPN";
    
  • + 0 comments
    SELECT SUM(POPULATION) FROM CITY
      WHERE COUNTRYCODE='JPN' 
    
  • + 0 comments

    select sum(city.population) from city where city.COUNTRYCODE ='JPN';

  • + 0 comments

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