We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
- Prepare
- SQL
- Aggregation
- Japan Population
- Discussions
Japan Population
Japan Population
Sort by
recency
|
416 Discussions
|
Please Login in order to post a comment
MYSQL : SELECT SUM(population) FROM city WHERE countrycode = 'JPN';
select sum(population) from CITY where COUNTRYCODE='JPN';
MYSQL
Select Sum(Population) as Population from city where CountryCode = 'JPN';
SELECT SUM(POPULATION)
FROM CITY
WHERE COUNTRYCODe = 'JPN';