Saturday, December 24, 2016

Query the names of all American cities in CITY with populations larger than 100,000. The CountryCode for America is USA.

Query all columns for all American cities in CITY with populations larger than 100000. TheCountryCode for America is USA.
Input Format
The CITY table is described as follows:CITY.jpg

Query:
select * from CITY where population>100000 and COUNTRYCODE='USA';