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
|
891 Discussions
|
Please Login in order to post a comment
Select * From City Where CounTrycode = 'USA' and Population > 100000;
select*from City where population>100000 AND CountryCode = 'USA'
SELECT * FROM CITY WHERE [COUNTRYCODE] = 'USA' AND [POPULATION] > 100000;
Check for 2 things population and countrycode.
SELECT * FROM CITY WHERE POPULATION > 100000 AND COUNTRYCODE = 'USA';
Mines is still saying wrong
SELECT * FROM CITY SELECT * FROM CITY WHERE POPULATION>100000 AND COUNTRYCODE="USA";