Revising the Select Query I

  • + 2 comments

    SELECT * FROM CITY Where COUNTRYCODE = 'USA' AND POPULATION > 100000; SELECT * FROM CITY Where POPULATION > 100000 AND COUNTRYCODE = 'USA' ;

    I just want to know what is the difference ???