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 II
Revising the Select Query II
Sort by
recency
|
628 Discussions
|
Please Login in order to post a comment
ngoccth_SQL SERVER: SELECT [name] FROM CITY WHERE CountryCode = 'USA' AND Population > 120000
select Name from city where Countrycode='USA' and Population>120000;
select NAME from CITY where COUNTRYCODE = 'USA' and POPULATION > 120000;
Here is the response
SELECT NAME FROM CITY WHERE COUNTRYCODE = 'USA' AND POPULATION > 120000;
This exaclty remebers me of my data based website, which I developed a few months ago. So much fun while developing such data base projects:
SELECT NAME FROM CITY WHERE population > 120000 AND countrycode = 'USA'