gpt4 book ai didi

sql - 在sqlite中查找最长的条纹

转载 作者:行者123 更新时间:2023-12-03 18:25:46 26 4
gpt4 key购买 nike

请帮我获取条纹数据。我有目标成就表

表测试

dt

2017-01-01
2017-01-02
2017-01-03. //3 days end of streak
2017-02-10 // 1 day
2017-02-15
2017-02-16
2017-02-17
2017-02-18 //4 days

我在 MySQL 中试过这个
Select dt, (select count(*) from test as t1 where t1.dt < t2.dt and datediff(t2.dt,t1.dt) =1) as str 
from test as t2

并得到
Dt         str
2017-01-01 0
2017-01-02 1
2017-01-03 2
2017-02-10 0
2017-02-15 0
2017-02-16 1
2017-02-17 2
2017-02-18 3

有没有可能得到这样的东西
Dt.        Str 
2017-01-03 3
2017-02-10 1
2017-02-18 4

并得到它的最大?

最佳答案

您可以从当前行的日期中减去行号(即行数 <= 当前行的日期),以将具有一天差异的连续行分类到同一组中。那么它只是一个分组操作来计算计数。

select max(dt) as dt, count(*) as streak
from (select t1.dt
,date(t1.dt,-(select count(*) from t t2 where t2.dt<=t1.dt)||' day') as grp
from t t1
) t
group by grp

运行内部查询以查看组是如何分配的。

关于sql - 在sqlite中查找最长的条纹,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44056555/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com