Revising the Select Query II

  • + 0 comments

    Basically in this question we need to find out all the names from the CITY table which are having population > 120000 and countrycode = 'USA' , so here is solution for this query :

    SELECT NAME FROM CITY WHERE POPULATION > 120000 AND COUNTRYCODE = 'USA' ;