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
|
856 Discussions
|
Please Login in order to post a comment
SELECT * FROM CITY WHERE COUNTRYCODE = 'USA' AND POPULATION > 100000;
SELECT * FROM CITY WHERE COUNTRYCODE = 'USA' AND POPULATION > 100000;
MySQL:
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;