https://www.hackerrank.com/challenges/revising-the-select-query
Given a City table, whose fields are described as
+-------------+----------+
| Field | Type |
+-------------+----------+
| ID | int(11) |
| Name | char(35) |
| CountryCode | char(3) |
| District | char(20) |
| Population | int(11) |
+-------------+----------+
write a query that will fetch all columns for every row in the table where the CountryCode = 'USA' (i.e, we wish to retreive data for all American cities) and the population exceeds 100,000.
City라는 테이블은 다음과 같은 명세로 주어져 있다.
모든 컬럼을 가져오는데 CountryCode는 USA로 하며 Population이 100,000 초과하는 도시에 대해서 조회하라는 듯 하다.
보낸 답)
SELECT *
FROM City
WHERE CountryCode = 'USA'
AND Population >= 100000;