Revising the Select Query I

Sort by

recency

|

923 Discussions

|

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

  • + 0 comments

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

  • + 2 comments

    SQL0206N "USA" is not valid in the context where it is used. SQLSTATE=42703 ? what is this error??

  • + 0 comments

    select * from city where countrcode='usa' and population>100000;

  • + 0 comments

    MYSQL

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