You are viewing a single comment's thread. Return to all 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 ???
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 →
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 ???