We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
Revising the Select Query I
Revising the Select Query I
Sort by
recency
|
899 Discussions
|
Please Login in order to post a comment
SELECT*from CITY where COUNTRYCODE='USA' AND POPULATION>100000;
SELECT*from CITY where COUNTRYCODE='USA' && POPULATION>100000;
SELECT * FROM CITY WHERE POPULATION > 100000 AND CountryCode = 'USA';
SELECT * FROM city WHERE countrycode = 'USA' AND population = 10000;
i have submited the above query but it is throwing error as wrong answer, please some one help to solve this.
Select * From City Where POPULATION >100000 AND COUNTRYCODE = "USA"