Revising the Select Query I

  • + 0 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