[SQL] Revising the Select Query II

순동·2022년 4월 10일
0

✅ Revising the Select Query II


📝 문제

Query the NAME field for all American cities in the CITY table with populations larger than 120000. The CountryCode for America is USA.

The CITY table is described as follows:


💻 풀이

SELECT NAME FROM CITY WHERE POPULATION >= 120000 AND COUNTRYCODE = 'USA';

0개의 댓글

Powered by GraphCDN, the GraphQL CDN