vote up 3 vote down star
1

Consider the need to create a resultset of dates. We've got a start and end dates, and we'd like to generate a list of dates in between.

DECLARE  @Start datetime
         ,@End  datetime
DECLARE @AllDates table
        (@Date datetime)

SELECT @Start = 'Mar 1 2009', @End = 'Aug 1 2009'

--need to fill @AllDates. Trying to avoid loop here if no better sol'n exists..

Consider the current implementation with a WHILE loop:

DECLARE @dCounter datetime
SELECT @dCounter = @Start
WHILE @dCounter <= @End
BEGIN
 INSERT INTO @AllDates VALUES (@dCounter)
 SELECT @dCounter=@dCounter+1 
END

Question: How would you create a set of dates that are within a user-defined range using T-SQL? Assume SQL 2005+. If your answer is using SQL 2008 features, please mark as such. Thank you!

flag

Which version of MSSQL Server are you using? If we give examples for 2008 and you are using 2000, then it would be pointless to talk about 2008 options. – James Black Sep 25 at 18:44
Thanks James. I thought I had specified in the question with 'assume 2005+'. – pcampbell Sep 25 at 19:19

8 Answers

vote up 4 vote down check

If your dates are no more than 2047 days apart:

declare @dt datetime, @dtEnd datetime
set @dt = getdate()
set @dtEnd = dateadd(day, 100, @dt)

select dateadd(day, number, @dt)
from 
    (select distinct number from master.dbo.spt_values
     where name is null
    ) n
where dateadd(day, number, @dt) < @dtEnd
link|flag
very clever (* required - at least 15 characters) – roman m Sep 25 at 19:04
Great answer, thank you! I didn't know about spt_values until now! – pcampbell Sep 26 at 15:35
vote up 0 vote down

Another option is to create corresponding function in .NET. Here's how it looks like:

[Microsoft.SqlServer.Server.SqlFunction(
  DataAccess = DataAccessKind.None,
  FillRowMethodName = "fnUtlGetDateRangeInTable_FillRow",
  IsDeterministic = true,
  IsPrecise = true,
  SystemDataAccess = SystemDataAccessKind.None,
  TableDefinition = "d datetime")]
public static IEnumerable fnUtlGetDateRangeInTable(SqlDateTime startDate, SqlDateTime endDate)
{
	// Check if arguments are valid

	int numdays = Math.Min(endDate.Value.Subtract(startDate.Value).Days,366);
	List<DateTime> res = new List<DateTime>();
	for (int i = 0; i <= numdays; i++)
		res.Add(dtStart.Value.AddDays(i));

	return res;
}

public static void fnUtlGetDateRangeInTable_FillRow(Object row, out SqlDateTime d)
{
	d = (DateTime)row;
}

This is basically a prototype and it can be made a lot smarter, but illustrates the idea. From my experience, for a small to moderate time spans (like a couple of years) this function performs better than the one implemented in T-SQL. Another nice feature of CLR version is that it does not creates temporary table.

link|flag
vote up 1 vote down

@KM's answer creates a numbers table first, and uses it to select a range of dates. To do the same without the temporary numbers table:

DECLARE  @Start datetime
		 ,@End  datetime
DECLARE @AllDates table
		(Date datetime)

SELECT @Start = 'Mar 1 2009', @End = 'Aug 1 2009';

WITH Nbrs_3( n ) AS ( SELECT 1 UNION SELECT 0 ),
     Nbrs_2( n ) AS ( SELECT 1 FROM Nbrs_3 n1 CROSS JOIN Nbrs_3 n2 ),
     Nbrs_1( n ) AS ( SELECT 1 FROM Nbrs_2 n1 CROSS JOIN Nbrs_2 n2 ),
     Nbrs_0( n ) AS ( SELECT 1 FROM Nbrs_1 n1 CROSS JOIN Nbrs_1 n2 ),
     Nbrs  ( n ) AS ( SELECT 1 FROM Nbrs_0 n1 CROSS JOIN Nbrs_0 n2 )

	SELECT @Start+n-1 as Date
		FROM ( SELECT ROW_NUMBER() OVER (ORDER BY n)
			FROM Nbrs ) D ( n )
	WHERE n <= DATEDIFF(day,@Start,@End)+1 ;

Test of course, if you are doing this often, a permanent table may well be more performant.

The query above is a modified version from this article, which discusses generating sequences and gives many possible methods. I liked this one as it does not create a temp table, and is not limited to the number of elements in the sys.objects table.

link|flag
vote up 6 vote down

Tthe following uses a recursive CTE (SQL Server 2005+):

WITH dates AS (
     SELECT CAST('2009-01-01' AS DATETIME) 'date'
     UNION ALL
     SELECT DATEADD(dd, 1, t.date) 
       FROM dates t
      WHERE DATEADD(dd, 1, t.date) <= '2009-02-01')
SELECT ...
  FROM TABLE t
  JOIN dates d ON d.date = t.date --etc.
link|flag
Isn't recursion just another way of writing a loop? – automatic Sep 25 at 19:10
+1, using SET SHOWPLAN_ALL ON, this this is a shade faster than the Numbers table method: TotalSubtreeCost 0.01000935 vs 0.03208314 – KM Sep 25 at 19:16
@automatic, a SELECT is a loop, the difference is who codes it, the internal database engine or a TSQL while. I'd bet that the internal database engine can loop a little ;-) faster – KM Sep 25 at 19:38
Great answer, thank you! – pcampbell Sep 26 at 15:33
if you can't use a CTE, because of SQL Server 2000 or older, the Numbers table is the way to go. – KM Sep 29 at 13:44
vote up 0 vote down

While I really like KM's solution above (+1), I must question your "no loop" assumption - given the plausible date ranges that your app will work with, having a loop should not really be all that expensive. The main trick is to strore the results of the loop in staging/cache table, so that extremely large sets of queries do not slow down the system by re-calculating the same exact dates. E.g. each query only computes/caches the date ranges that are NOT already in cache and that it needs (and pre-populate the table with some realistic date range like ~2 years in advance, with range determined by your application business needs).

link|flag
1  
never loop unless you have to! a DB is a shared resource, you are slowing someone else down. A Numbers table is very useful for many things: sqlserver2000.databases.aspfaq.com/why-should-i-c… and makes a date table unnecessary. – KM Sep 25 at 19:01
While I agree with overall sentiment re: loops, in this particular case I must violently disagree - the cost of looping ONCE EVER (remember, we are stashing the loop results in a dates table) is significanly lower DB resource drain than computing date math in EVERY single query as would be the case with numbers table. – DVK Sep 25 at 20:15
vote up 0 vote down

create a temp table with integers from 0 to the difference between your two dates.

SELECT DATE_ADD(@Start, INTERVAL tmp_int DAY) AS the_date FROM int_table;
link|flag
vote up 3 vote down

For this method to work, you need to do this one time table setup:

SELECT TOP 10000 IDENTITY(int,1,1) AS Number
    INTO Numbers
    FROM sys.objects s1
    CROSS JOIN sys.objects s2
ALTER TABLE Numbers ADD CONSTRAINT PK_Numbers PRIMARY KEY CLUSTERED (Number)

Once the Numbers table is set up, use this query:

SELECT
    @Start+Number-1
    FROM Numbers
    WHERE Number<=DATEDIFF(day,@Start,@End)+1

to capture them do:

DECLARE  @Start datetime
         ,@End  datetime
DECLARE @AllDates table
        (Date datetime)

SELECT @Start = 'Mar 1 2009', @End = 'Aug 1 2009'

INSERT INTO @AllDates
        (Date)
    SELECT
        @Start+Number-1
        FROM Numbers
        WHERE Number<=DATEDIFF(day,@Start,@End)+1

SELECT * FROM @AllDates

output:

Date
-----------------------
2009-03-01 00:00:00.000
2009-03-02 00:00:00.000
2009-03-03 00:00:00.000
2009-03-04 00:00:00.000
2009-03-05 00:00:00.000
2009-03-06 00:00:00.000
2009-03-07 00:00:00.000
2009-03-08 00:00:00.000
2009-03-09 00:00:00.000
2009-03-10 00:00:00.000
....
2009-07-25 00:00:00.000
2009-07-26 00:00:00.000
2009-07-27 00:00:00.000
2009-07-28 00:00:00.000
2009-07-29 00:00:00.000
2009-07-30 00:00:00.000
2009-07-31 00:00:00.000
2009-08-01 00:00:00.000

(154 row(s) affected)
link|flag
1  
@KM: Is there an advantage to using this approach versus a recursive CTE? – OMG Ponies Sep 25 at 19:02
If you are going to do this one time table setup, why not just build a one-time table setup that holds all the dates from say 1900-01-01 to 2099-12-31? – automatic Sep 25 at 19:07
@automatic, A Numbers table is very useful for many things: sqlserver2000.databases.aspfaq.com/why-should-i-c… and makes a date table unnecessary. – KM Sep 25 at 19:09
@KM: How do you know that the cross join will give at least 10000 records? – eKek0 Sep 25 at 20:13
@eKek0, all you need is 100 rows cross joined to itself to make 10,000 records, if you don't have enough just try sys.columns – KM Sep 28 at 13:35
show 1 more comment
vote up 0 vote down

What I'd recommend: create an auxiliary table of numbers and use it to generate your list of dates. You can also use a recursive CTE, but that may not perform as well as joining to an auxiliary table of numbers. See http://stackoverflow.com/questions/10819/sql-auxiliary-table-of-numbers for info on both options.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.