Revising the Select Query I

  • + 0 comments

    SELECT * FROM city WHERE countrycode = "usa" AND population > 100000; note: 1. Use "Lower case" for city, countrycode, population. 2. And for the statement , clause and operator use "Upper Case".

    note2: I have done upper query in mysql and it accepted double quotes for countrycode which is usa. But in case you happen to use any other language use single quote.