Query the names of all American cities in CITY with populations larger than
120000
. TheCountryCode for America is USA
.
Input Format
The CITY table is described as follows:
Query :
Select NAME from CITY CountryCode = 'USA' and Population > 120000;