Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SQL Query Creating Start and End Dates

Tags:

sql

Alright, let's say I have a table that looks like this:

 ID   | DATE
 2  | 2010-08-12
 2  | 2010-08-16 
 2  | 2010-08-17 
 2  | 2010-12-21 
 2  | 2010-12-22 
 2  | 2011-05-25 

anyone have an idea on how to query it so the data looks like

 ID   | STARTDATE  | ENDDATE
 2  | 2010-08-12 | 2010-08-15
 2  | 2010-08-16 | 2010-08-16
 2  | 2010-08-17 | 2010-12-20
 2  | 2010-12-21 | 2010-12-21
 2  | 2010-12-22 | 2010-05-25
like image 659
James Avatar asked Sep 10 '26 10:09

James


1 Answers

I will not put here the ID as I see it is irrelevant in the query. If you wish you will put it later. This is a MSSQL query.

select tb1.date as startdate,dateadd(d,-1,tb2.date) as enddate
from the_table tb1
join the_table tb2 on tb2.date>tb1.date
left join the_table tb3 on tb1.date<tb3.date and tb3.date<tb2.date
where tb3.date is null

It can be easily translated for other DB types.

like image 135
Dumitrescu Bogdan Avatar answered Sep 13 '26 01:09

Dumitrescu Bogdan



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!