zoukankan      html  css  js  c++  java
  • 601. Human Traffic of Stadium【leetcode】

    取三个以上连续的连续的行使得他们的人数大于100

    X city built a new stadium, each day many people visit it and the stats are saved as these columns: id, date, people

    Please write a query to display the records which have 3 or more consecutive rows and the amount of people more than 100(inclusive).

    For example, the table stadium:

    +------+------------+-----------+
    | id   | date       | people    |
    +------+------------+-----------+
    | 1    | 2017-01-01 | 10        |
    | 2    | 2017-01-02 | 109       |
    | 3    | 2017-01-03 | 150       |
    | 4    | 2017-01-04 | 99        |
    | 5    | 2017-01-05 | 145       |
    | 6    | 2017-01-06 | 1455      |
    | 7    | 2017-01-07 | 199       |
    | 8    | 2017-01-08 | 188       |
    +------+------------+-----------+
    

    For the sample data above, the output is:

    +------+------------+-----------+
    | id   | date       | people    |
    +------+------------+-----------+
    | 5    | 2017-01-05 | 145       |
    | 6    | 2017-01-06 | 1455      |
    | 7    | 2017-01-07 | 199       |
    | 8    | 2017-01-08 | 188       |
    +------+------------+-----------+
    SELECT
        DISTINCT t1.*
    FROM
        stadium t1,
        stadium t2,
        stadium t3
    WHERE
        t1.people >= 100
    AND t2.people >= 100
    AND t3.people >= 100
    AND (
        (
            t1.id - t2.id = 1
            AND t1.id - t3.id = 2
            AND t2.id - t3.id = 1
        )
        OR (
            t2.id - t1.id = 1
            AND t2.id - t3.id = 2
            AND t1.id - t3.id = 1
        )
        OR (
            t3.id - t2.id = 1
            AND t2.id - t1.id = 1
            AND t3.id - t1.id = 2
        )
    )
    ORDER BY
        t1.id
    不积跬步无以至千里,千里之堤毁于蚁穴。 你是点滴积累成就你,你的丝丝懒惰毁掉你。 与诸君共勉
  • 相关阅读:
    google浏览器高清壁纸保存
    vmworkstation安装unbuntu server 网络配置:NAT模式
    python量化交易相关资料
    Oracle VM VirtualBox启动后莫名奇妙的报错
    oracle RAC 跨网段客户端访问 报ORA-12170
    odoo开发 相关知识点
    C#.ToString()格式大全
    flex简单参考实例
    NPOI读写Excel
    C# Stream 和 byte[] 之间的转换(文件流的应用)
  • 原文地址:https://www.cnblogs.com/haoHaoStudyShare/p/7646336.html
Copyright © 2011-2022 走看看