[SQL] Revising the Select Query I

์ˆœ๋™ยท2022๋…„ 4์›” 10์ผ
0

โœ… Revising the Select Query I


๐Ÿ“ ๋ฌธ์ œ

Query all columns for all American cities in the CITY table with populations larger than 100000. The CountryCode for America is USA.

The CITY table is described as follows:


๐Ÿ’ป ํ’€์ด

SELECT * FROM CITY WHERE POPULATION >= 100000 AND COUNTRYCODE = 'USA';

0๊ฐœ์˜ ๋Œ“๊ธ€

๊ด€๋ จ ์ฑ„์šฉ ์ •๋ณด