This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*Query all columns for all American cities in the CITY table with populations larger than 100000.The CountryCode for America is USA.*/ | |
select * from city | |
where countrycode = 'USA' and population >100000; | |
/*Query the NAME field for all American cities in the CITY table with populations larger than 120000. The CountryCode for America is USA.*/ | |
select name from city | |
where population > 120000 and countrycode = 'USA'; |