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
|
895 Discussions
|
Please Login in order to post a comment
Select * From City Where POPULATION >100000 AND COUNTRYCODE = "USA"
select * from city where COUNTRYCODE = 'USA' And Population > 10000 when i put this code it's showing wrong answer
SELECT * FROM CITY WHERE POPULATION>100000 AND COUNTRYCODE='USA';
select * from city where countrycode='USA' and population>100000;
Select * From City Where CounTrycode = 'USA' and Population > 100000;