Query all columns for all American cities in CITY with populations larger than
100000
. The CountryCode for America is USA
.
Input Format
The CITY table is described as follows:
query:
select*
from CITY
where countrycode='USA' and population>100000;
No comments:
Post a Comment