Japan Population

Sort by

recency

|

430 Discussions

|

  • + 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';

  • + 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';