我有一张包含以下数据的表格。
serial date flag
1 1 aug 1
2 2 aug 1
3 3 aug 0
4 4 aug 0
5 5 aug 1
6 6 aug 1
7 7 aug 1
我需要的是这个结果集:
from to flag
1-aug 2-aug 1
3-Aug 4-Aug 0
5-Aug 7-Aug 1
当我对标记进行分组时,所有1
值都会合并。有什么建议吗?
答案 0 :(得分:0)
为了解决这个问题,我假设日期将是连续的。然后我加入了数据,首先是“昨天”的数据,然后是“明天的”数据,然后取得那些标志值已经改变的行 - 这标志着开始&给定系列的结束日期。为了将开始日期与结束日期相匹配,我订购了每个系列,分配了一个柜台并加入了这个柜台。
这是代码:
SET @cnt1 := 0;
SET @cnt2 := 0;
select firstdate, lastdate, startDates.flag from
(
select @cnt2 := @cnt2 + 1 as i, table1.date as firstdate, table1.flag from table1
left join (
select DATE_ADD(date, INTERVAL 1 DAY) as dateplus1, date, flag from table1
) plus1 on table1.date = plus1.dateplus1
where table1.flag <> IFNull(plus1.flag,-1)
order by table1.date
) startDates
inner join
(
select @cnt1 := @cnt1 + 1 as i, table1.date as lastdate, table1.flag from table1
left join (
select DATE_ADD(date, INTERVAL -1 DAY) as dateminus1, date, flag from table1
) minus1 on table1.date = minus1.dateminus1
where table1.flag <> IFNull(minus1.flag,-1)
order by table1.date
) endDates on startDates.i = endDates.i
;
sql fiddle here:http://sqlfiddle.com/#!2/25594/1/2