Please see github.com/anusha-murali for all of my repositories.
View GitHub Profile
Query a count of the number of cities in CITY having a Population larger than 100,000.
The CITY table is described as follows:
SELECT COUNT(ID) FROM CITY WHERE POPULATION > 100000;
Back to problems