Japan Population

Sort by

recency

|

433 Discussions

|

  • + 0 comments

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

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

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

  • + 0 comments

    For MySQL

    SELECT SUM(
    	CASE
    		WHEN countrycode = "JPN" THEN population
    		ELSE 0
    	END) AS pop
    FROM city;
    
  • + 0 comments

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