Revising the Select Query I

Sort by

recency

|

895 Discussions

|

  • + 0 comments

    Select * From City Where POPULATION >100000 AND COUNTRYCODE = "USA"

  • + 1 comment

    select * from city where COUNTRYCODE = 'USA' And Population > 10000 when i put this code it's showing wrong answer

  • + 0 comments

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

  • + 0 comments

    select * from city where countrycode='USA' and population>100000;

  • + 0 comments

    Select * From City Where CounTrycode = 'USA' and Population > 100000;