Japan Population

  • + 0 comments

    SELECT SUM(POPULATION) FROM CITY WHERE COUNTRYCODE = 'JPN'

    The SELECT function is used to select the population FROM city table. SUM function adds up the population. WHERE clause is used to filter the countrycode for Japan.