前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >LeetCode MySQL 1225. 报告系统状态的连续日期(date_sub + over)

LeetCode MySQL 1225. 报告系统状态的连续日期(date_sub + over)

作者头像
Michael阿明
发布2021-02-19 10:41:06
9080
发布2021-02-19 10:41:06
举报
文章被收录于专栏:Michael阿明学习之路

文章目录

1. 题目

Table: Failed

代码语言:javascript
复制
+--------------+---------+
| Column Name  | Type    |
+--------------+---------+
| fail_date    | date    |
+--------------+---------+
该表主键为 fail_date。
该表包含失败任务的天数.

Table: Succeeded

代码语言:javascript
复制
+--------------+---------+
| Column Name  | Type    |
+--------------+---------+
| success_date | date    |
+--------------+---------+
该表主键为 success_date。
该表包含成功任务的天数.

系统 每天 运行一个任务。每个任务都独立于先前的任务。 任务的状态可以是失败或是成功。

编写一个 SQL 查询 2019-01-01 到 2019-12-31 期间任务连续同状态 period_state 的起止日期(start_date 和 end_date)。 即如果任务失败了,就是失败状态的起止日期,如果任务成功了,就是成功状态的起止日期。

最后结果按照起始日期 start_date 排序

查询结果样例如下所示:

代码语言:javascript
复制
Failed table:
+-------------------+
| fail_date         |
+-------------------+
| 2018-12-28        |
| 2018-12-29        |
| 2019-01-04        |
| 2019-01-05        |
+-------------------+

Succeeded table:
+-------------------+
| success_date      |
+-------------------+
| 2018-12-30        |
| 2018-12-31        |
| 2019-01-01        |
| 2019-01-02        |
| 2019-01-03        |
| 2019-01-06        |
+-------------------+

Result table:
+--------------+--------------+--------------+
| period_state | start_date   | end_date     |
+--------------+--------------+--------------+
| succeeded    | 2019-01-01   | 2019-01-03   |
| failed       | 2019-01-04   | 2019-01-05   |
| succeeded    | 2019-01-06   | 2019-01-06   |
+--------------+--------------+--------------+

结果忽略了 2018 年的记录,因为我们只关心从 2019-01-01 到 2019-12-31 的记录
从 2019-01-01 到 2019-01-03 所有任务成功,系统状态为 "succeeded"。
从 2019-01-04 到 2019-01-05 所有任务失败,系统状态为 "failed"。
从 2019-01-06 到 2019-01-06 所有任务成功,系统状态为 "succeeded"。

来源:力扣(LeetCode) 链接:https://leetcode-cn.com/problems/report-contiguous-dates 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

2. 解题

  • 给数据编号,然后用 日期跟编号做差 当作分组标准,使用窗口函数
代码语言:javascript
复制
select distinct period_state, 
        min(date) over(partition by date_sub(date, interval rnk day)) start_date,
        max(date) over(partition by date_sub(date, interval rnk day)) end_date
from
(
    select success_date date, 'succeeded' period_state, 
            rank() over(order by success_date) rnk
    from Succeeded
    where success_date like "2019%"
) t1
代码语言:javascript
复制
{"headers": ["period_state", "start_date", "end_date"], 
"values": [
["succeeded", "2019-01-01", "2019-01-03"], 
["succeeded", "2019-01-06", "2019-01-06"]]}
  • 最后合并 union all
代码语言:javascript
复制
# Write your MySQL query statement below
select *
from
(
    select distinct period_state, 
            min(date) over(partition by date_sub(date, interval rnk day)) start_date,
            max(date) over(partition by date_sub(date, interval rnk day)) end_date
    from
    (
        select success_date date, 'succeeded' period_state, 
                rank() over(order by success_date) rnk
        from Succeeded
        where success_date like "2019%"
    ) t1
    union all
    select distinct period_state, 
            min(date) over(partition by date_sub(date, interval rnk day)) start_date,
            max(date) over(partition by date_sub(date, interval rnk day)) end_date
    from
    (
        select fail_date date, 'failed' period_state, 
                rank() over(order by fail_date) rnk
        from Failed
        where fail_date like "2019%"
    ) t2
) t
order by start_date
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2020/07/31 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 文章目录
  • 1. 题目
  • 2. 解题
相关产品与服务
云数据库 MySQL
腾讯云数据库 MySQL(TencentDB for MySQL)为用户提供安全可靠,性能卓越、易于维护的企业级云数据库服务。其具备6大企业级特性,包括企业级定制内核、企业级高可用、企业级高可靠、企业级安全、企业级扩展以及企业级智能运维。通过使用腾讯云数据库 MySQL,可实现分钟级别的数据库部署、弹性扩展以及全自动化的运维管理,不仅经济实惠,而且稳定可靠,易于运维。
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档