-
leetcode - 595. Big CountriesSQL 문제풀이 2022. 7. 5. 17:16
난이도 : Easy
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.
SELECT name , population , area FROM World WHERE area >= 3000000 OR population >= 25000000
Accepted (84.99%)
'SQL 문제풀이' 카테고리의 다른 글
leetcode - 1294. Weather Type in Each Country (0) 2022.07.06 leetcode - 596. Classes More Than 5 Students (0) 2022.07.05 leetcode - 586. Customer Placing the Largest Number of Orders (0) 2022.07.05 leetcode - 584. Find Customer Referee (0) 2022.07.05 (Again) leetcode - 1241. Number of Comments per Post (0) 2022.07.04