1. Description
Table: World
+-------------+---------+
| Column Name | Type |
+-------------+---------+
| name | varchar |
| continent | varchar |
| area | int |
| population | int |
| gdp | int |
+-------------+---------+
name is the primary key column for this table.
Each row of this table gives information about the name of a country, the continent to which it belongs, its area, the population, and its GDP value.
A country is big if:
- it has an area of at least three million (i.e., 3000000 km2), or
- it has a population of at least twenty-five million (i.e., 25000000).
Write an SQL query to report the name, population, and area of the big countries.
Return the result table in any order.
The query result format is in the following example.
2. Algorithms
We can use WHERE clause to find records in conditions.
3. Codes
# Write your MySQL query statement below
SELECT name, population, area
FROM World
WHERE area > 3000000 or population >= 25000000;
4. Conclusion
'LeetCode > Easy' 카테고리의 다른 글
589 Range Addition II (0) | 2022.09.08 |
---|---|
596 Classes More Than 5 Students (0) | 2022.09.08 |
594 Longest Harmonious Subsequence (0) | 2022.09.07 |
590 N-ary Tree Postorder Traversal (0) | 2022.09.07 |
589 N-ary Tree Preorder Traversal (0) | 2022.09.07 |