Combining split date ranges in a SQL query - Stack Overflow most recent 30 from stackoverflow.com 2009-11-09T08:43:37Z http://stackoverflow.com/feeds/question/140205 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/140205/combining-split-date-ranges-in-a-sql-query 4 Combining split date ranges in a SQL query Eric Ness 2008-09-26T15:25:46Z 2009-03-09T23:45:24Z <p>I'm working on a query that needs to have some data rows combined based on date ranges. These rows are duplicated in all the data values, except the date ranges are split. For example the table data may look like</p> <pre><code>StudentID StartDate EndDate Field1 Field2 1 9/3/2007 10/20/2007 3 True 1 10/21/2007 6/12/2008 3 True 2 10/10/2007 3/20/2008 4 False 3 9/3/2007 11/3/2007 8 True 3 12/15/2007 6/12/2008 8 True </code></pre> <p>The result of the query should have the split date ranges combined. The query should combine date ranges with a gap of only one day. If there is more than a one day gap, then the rows shouldn't be combined. The rows that don't have a split date range should come through unchanged. The result would look like</p> <pre><code>StudentID StartDate EndDate Field1 Field2 1 9/3/2007 6/12/2008 3 True 2 10/10/2007 3/20/2008 4 False 3 9/3/2007 11/3/2007 8 True 3 12/15/2007 6/12/2008 8 True </code></pre> <p>What would be the SELECT statement for this query?</p> http://stackoverflow.com/questions/140205/combining-split-date-ranges-in-a-sql-query/140222#140222 0 Answer by Adam Bellaire for Combining split date ranges in a SQL query Adam Bellaire 2008-09-26T15:28:25Z 2008-09-26T15:34:35Z <p>In my experience, I have to combine the ranges in post-processing (not in SQL but in my script). I'm not sure that a SQL can do this, particularly because you can never know exactly how many date ranges need to be chained in any particular case. If this can be done though, I'd love to know too. </p> <p><strong>EDIT:</strong> My answer is assuming that you have more than one range of dates per student, not just a start and an end. If you only have the one date range with no gaps, then the other mentioned solutions are the way to go.</p> http://stackoverflow.com/questions/140205/combining-split-date-ranges-in-a-sql-query/140226#140226 0 Answer by Scott Bevington for Combining split date ranges in a SQL query Scott Bevington 2008-09-26T15:28:58Z 2008-09-26T15:28:58Z <p>Select StudentID, min(startdate) as startdate, max(enddate), field1, field2 from tablex group by StudentID, field1, field2</p> <p>That would yield you the result assuming the wasn't a gap between on student's time range.</p> http://stackoverflow.com/questions/140205/combining-split-date-ranges-in-a-sql-query/140227#140227 0 Answer by Joe Skora for Combining split date ranges in a SQL query Joe Skora 2008-09-26T15:28:59Z 2008-09-26T15:28:59Z <pre><code>select StudentID, min(StartDate) StartDate, max(EndDate) EndDate, Field1, Field2 from table group by StudentID, Field1, Field2 </code></pre> http://stackoverflow.com/questions/140205/combining-split-date-ranges-in-a-sql-query/140428#140428 0 Answer by runrig for Combining split date ranges in a SQL query runrig 2008-09-26T16:06:41Z 2008-09-26T16:06:41Z <p>If the min()/max() solutions are not good enough (e.g. if the dates are not contiguous and you want to group separate date ranges separately), I wonder if something using Oracle's START WITH and CONNECT BY clauses would work. Which, of course, wouldn't work on every database.</p> http://stackoverflow.com/questions/140205/combining-split-date-ranges-in-a-sql-query/140504#140504 0 Answer by CindyH for Combining split date ranges in a SQL query CindyH 2008-09-26T16:19:38Z 2008-09-26T16:50:03Z <p>EDIT: Make another set of SQL for Access. I tested all of this, but piece by piece because I don't know how to make several statements at one time in Access. Since I also don't know how to do comments, you can see the comments in the SQL version, below.</p> <pre><code>select studentid, min(startdate) as Starter, max(enddate) as Ender, field1, field2, max(startDate) - Min(endDate) as MaxGap into tempIDs from student group by studentid, field1, field2 ; delete from tempIDs where MaxGap &gt; 1; UPDATE student INNER JOIN TempIDs ON Student.studentID = TempIDS.StudentID SET Student.StartDate = [TempIDs].[Starter], Student.EndDate = [TempIDs].[Ender]; </code></pre> <p>I think this is it, in SQL Server - I didn't do it in Access. I haven't tested it for fancy conditions such as overlapping several records, etc., but this should get you started. It updates all the duplicate, small-gap records, leaving extras in the database. MSDN has a page on eliminating duplicates: <a href="http://support.microsoft.com/kb/139444" rel="nofollow">http://support.microsoft.com/kb/139444</a></p> <pre><code>select studentid, min(startdate) as StartDate, max(enddate) as EndDate, field1, field2, datediff(dd, Min(endDate),max(startDate)) as MaxGap into #tempIDs from #student group by studentid, field1, field2 -- Update the relevant records. Keeps two copies of the massaged record -- - extra will need to be deleted. update #student set startdate = #TempIDS.startdate, enddate = #tempIDS.EndDate from #tempIDS where #student.studentid = #TempIDs.StudentID and MaxGap &lt; 2 </code></pre> http://stackoverflow.com/questions/140205/combining-split-date-ranges-in-a-sql-query/140596#140596 1 Answer by Tom H. for Combining split date ranges in a SQL query Tom H. 2008-09-26T16:38:16Z 2008-09-26T20:17:18Z <p>The following code should work. I've made a few assumptions as follows: there are no overlaps of date ranges, there are no NULL values in any of the fields, and the start date for a given row is always less than the end date. If your data doesn't fit these criteria, you'll need to adjust this method, but it should point you in the right direction.</p> <p>You can use subqueries instead of the views, but that can be cumbersome so I used the views to make the code clearer.</p> <pre><code>CREATE VIEW dbo.StudentStartDates AS SELECT S.StudentID, S.StartDate, S.Field1, S.Field2 FROM dbo.Students S LEFT OUTER JOIN dbo.Students PREV ON PREV.StudentID = S.StudentID AND PREV.Field1 = S.Field1 AND PREV.Field2 = S.Field2 AND PREV.EndDate = DATEADD(dy, -1, S.StartDate) WHERE PREV.StudentID IS NULL GO CREATE VIEW dbo.StudentEndDates AS SELECT S.StudentID, S.EndDate, S.Field1, S.Field2 FROM dbo.Students S LEFT OUTER JOIN dbo.Students NEXT ON NEXT.StudentID = S.StudentID AND NEXT.Field1 = S.Field1 AND NEXT.Field2 = S.Field2 AND NEXT.StartDate = DATEADD(dy, 1, S.EndDate) WHERE NEXT.StudentID IS NULL GO SELECT SD.StudentID, SD.StartDate, ED.EndDate, SD.Field1, SD.Field2 FROM dbo.StudentStartDates SD INNER JOIN dbo.StudentEndDates ED ON ED.StudentID = SD.StudentID AND ED.Field1 = SD.Field1 AND ED.Field2 = SD.Field2 AND ED.EndDate &gt; SD.StartDate AND NOT EXISTS (SELECT * FROM dbo.StudentEndDates ED2 WHERE ED2.StudentID = SD.StudentID AND ED2.Field1 = SD.Field1 AND ED2.Field2 = SD.Field2 AND ED2.EndDate &lt; ED.EndDate AND ED2.EndDate &gt; SD.StartDate) GO </code></pre> http://stackoverflow.com/questions/140205/combining-split-date-ranges-in-a-sql-query/141443#141443 0 Answer by David W. Fenton for Combining split date ranges in a SQL query David W. Fenton 2008-09-26T19:31:45Z 2009-03-09T23:45:24Z <p>Have you considered a non-equi join? That would look something like this:</p> <pre><code>SELECT A.StudentID, A.StartDate, A.EndDate, A.Field1, A.Field2 FROM tblEnrollment AS A LEFT JOIN tblEnrollment AS B ON (A.StudentID = B.StudentID) AND (A.EndDate=B.StartDate-1) WHERE B.StudentID Is Null; </code></pre> <p>What that gives you is all the records that don't have a corresponing record that starts the day after the ending date of the first record.</p> <p>[Caveat: Beware that you can only edit a non-equi join in the Access query designer in SQL View -- switching to Design View could cause the join to be lost (though if you do switch Access tells you about the problem, and if you immediately switch back to SQL View, you won't lose it)]</p> <p>If you then UNION that with this:</p> <pre><code>SELECT A.StudentID, A.StartDate, B.EndDate, A.Field1, A.Field2 FROM tblEnrollment AS A INNER JOIN tblEnrollment AS B ON (A.StudentID = B.StudentID) AND (A.EndDate= B.StartDate-1) </code></pre> <p>It should give you what you need, assuming there are never more than two contiguous records at a time. I'm not sure how you'd do it if you had more than two contiguous records (it might involve looking at StartDate-1 compared to EndDate), but this might get you started in the right direction.</p> <p>-- <br> David W. Fenton<br> <a href="http://dfenton.com/DFA/" rel="nofollow">David Fenton Associates</a></p> http://stackoverflow.com/questions/140205/combining-split-date-ranges-in-a-sql-query/141585#141585 0 Answer by Eric Ness for Combining split date ranges in a SQL query Eric Ness 2008-09-26T19:56:31Z 2008-09-26T19:56:31Z <p>An alternate final query to the one provided by Tom H. in the accepted answer is</p> <pre><code>SELECT SD.StudentID, SD.StartDate, MIN(ED.EndDate), SD.Field1, SD.Field2 FROM dbo.StudentStartDates SD INNER JOIN dbo.StudentEndDates ED ON ED.StudentID = SD.StudentID AND ED.Field1 = SD.Field1 AND ED.Field2 = SD.Field2 AND ED.EndDate &gt; SD.StartDate GROUP BY SD.StudentID, SD.Field1, SD.Field2, SD.StartDate </code></pre> <p>This also worked on all test data.</p> http://stackoverflow.com/questions/140205/combining-split-date-ranges-in-a-sql-query/148486#148486 0 Answer by onedaywhen for Combining split date ranges in a SQL query onedaywhen 2008-09-29T12:36:17Z 2008-09-29T12:36:17Z <p>This is a classic problem in SQL (the language) e.g. covered in Joe Celko's books 'SQL for Smarties" (chapter 23, Regions, Runs, Gaps, Sequences and Series) and his latest book "Thinking in Sets" (chapter 15). </p> <p>While it's 'fun' to fix the data at run time with a monster query, for me this is one of those situations that can be better fixed off line and procedurally (personally I'd do it with formulas in an Excel spreadsheet). </p> <p>The important thing is to put in place effective database constraints to prevent the overlapping periods reoccurring. Again, writing sequenced constraints in SQL is a classic: see Snodgrass (<a href="http://www.cs.arizona.edu/people/rts/tdbbook.pdf" rel="nofollow">http://www.cs.arizona.edu/people/rts/tdbbook.pdf</a>). Hint for MS Access users: you'll need to use CHECK constraints.</p> http://stackoverflow.com/questions/140205/combining-split-date-ranges-in-a-sql-query/269922#269922 0 Answer by cdonner for Combining split date ranges in a SQL query cdonner 2008-11-06T19:17:44Z 2008-11-06T19:17:44Z <p>If the number of rows that need to be eliminated is guaranteed to be relatively small (i.e. less than 100 in each contiguous group), recursion is the way to go. I outlined an example <a href="http://cdonner.com/combining-contiguous-date-ranges-in-a-sql-query-using-cte-recursion.htm" rel="nofollow">here</a>.</p>