You are viewing a single comment's thread. Return to all comments →
As per given info it is asking for all the column having countrycode as USA and have population over 100000. Here is the my submission
Select * from CITY where CountryCode = 'USA' and Population > 100000
Seems like cookies are disabled on this browser, please enable them to open this website
Revising the Select Query I
You are viewing a single comment's thread. Return to all comments →
As per given info it is asking for all the column having countrycode as USA and have population over 100000. Here is the my submission
Select * from CITY where CountryCode = 'USA' and Population > 100000