码迷,mamicode.com
首页 > 其他好文 > 详细

601. 体育馆的人流量

时间:2020-03-27 12:50:10      阅读:71      评论:0      收藏:0      [点我收藏+]

标签:traffic   style   流量   tle   pre   mysq   tco   https   sql   

601. 体育馆的人流量

暴力搜索条件

一开始不知道怎么去重,然后看了一眼评论区就行白了,直接 select s1.* 就可以对全表的数据进行去重

 

# Write your MySQL query statement below
select
    distinct s1.*
from
    stadium s1, stadium s2, stadium s3
where
    (s1.id + 1 = s2.id and s2.id + 1 = s3.id and s1.people >= 100 and s2.people >= 100 and s3.people >= 100)
or
    (s1.id - 1 = s2.id and s2.id - 1 = s3.id and s1.people >= 100 and s2.people >= 100 and s3.people >= 100)
or 
    (s1.id - 1 = s2.id and s1.id + 1 = s3.id and s1.people >= 100 and s2.people >= 100 and s3.people >= 100)
order by
    visit_date
asc
;

 

 

601. 体育馆的人流量

标签:traffic   style   流量   tle   pre   mysq   tco   https   sql   

原文地址:https://www.cnblogs.com/letlifestop/p/12580336.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!