Revising the Select Query I

Sort by

recency

|

924 Discussions

|

  • + 1 comment

    select * from city where (countrycode="USA") and (population>100000); Why is this answer wrong

  • + 4 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;