返回介绍

solution / 1200-1299 / 1294.Weather Type in Each Country / README_EN

发布于 2024-06-17 01:03:21 字数 4168 浏览 0 评论 0 收藏 0

1294. Weather Type in Each Country

中文文档

Description

Table: Countries

+---------------+---------+
| Column Name   | Type  |
+---------------+---------+
| country_id  | int   |
| country_name  | varchar |
+---------------+---------+
country_id is the primary key (column with unique values) for this table.
Each row of this table contains the ID and the name of one country.

 

Table: Weather

+---------------+------+
| Column Name   | Type |
+---------------+------+
| country_id  | int  |
| weather_state | int  |
| day       | date |
+---------------+------+
(country_id, day) is the primary key (combination of columns with unique values) for this table.
Each row of this table indicates the weather state in a country for one day.

 

Write a solution to find the type of weather in each country for November 2019.

The type of weather is:

  • Cold if the average weather_state is less than or equal 15,
  • Hot if the average weather_state is greater than or equal to 25, and
  • Warm otherwise.

Return the result table in any order.

The result format is in the following example.

 

Example 1:

Input: 
Countries table:
+------------+--------------+
| country_id | country_name |
+------------+--------------+
| 2      | USA      |
| 3      | Australia  |
| 7      | Peru     |
| 5      | China    |
| 8      | Morocco    |
| 9      | Spain    |
+------------+--------------+
Weather table:
+------------+---------------+------------+
| country_id | weather_state | day    |
+------------+---------------+------------+
| 2      | 15      | 2019-11-01 |
| 2      | 12      | 2019-10-28 |
| 2      | 12      | 2019-10-27 |
| 3      | -2      | 2019-11-10 |
| 3      | 0       | 2019-11-11 |
| 3      | 3       | 2019-11-12 |
| 5      | 16      | 2019-11-07 |
| 5      | 18      | 2019-11-09 |
| 5      | 21      | 2019-11-23 |
| 7      | 25      | 2019-11-28 |
| 7      | 22      | 2019-12-01 |
| 7      | 20      | 2019-12-02 |
| 8      | 25      | 2019-11-05 |
| 8      | 27      | 2019-11-15 |
| 8      | 31      | 2019-11-25 |
| 9      | 7       | 2019-10-23 |
| 9      | 3       | 2019-12-23 |
+------------+---------------+------------+
Output: 
+--------------+--------------+
| country_name | weather_type |
+--------------+--------------+
| USA      | Cold     |
| Australia  | Cold     |
| Peru     | Hot      |
| Morocco    | Hot      |
| China    | Warm     |
+--------------+--------------+
Explanation: 
Average weather_state in USA in November is (15) / 1 = 15 so weather type is Cold.
Average weather_state in Austraila in November is (-2 + 0 + 3) / 3 = 0.333 so weather type is Cold.
Average weather_state in Peru in November is (25) / 1 = 25 so the weather type is Hot.
Average weather_state in China in November is (16 + 18 + 21) / 3 = 18.333 so weather type is Warm.
Average weather_state in Morocco in November is (25 + 27 + 31) / 3 = 27.667 so weather type is Hot.
We know nothing about the average weather_state in Spain in November so we do not include it in the result table. 

Solutions

Solution 1

# Write your MySQL query statement below
SELECT
  country_name,
  CASE
    WHEN AVG(weather_state) <= 15 THEN 'Cold'
    WHEN AVG(weather_state) >= 25 THEN 'Hot'
    ELSE 'Warm'
  END AS weather_type
FROM
  Weather AS w
  JOIN Countries USING (country_id)
WHERE DATE_FORMAT(day, '%Y-%m') = '2019-11'
GROUP BY 1;

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文