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
|
902 Discussions
|
Please Login in order to post a comment
SELECT * FROM CITY WHERE CountryCode = 'USA' AND Population > 100000;
WHere is the table to see
SELECT*from CITY where COUNTRYCODE='USA' AND POPULATION>100000
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';