Viewing post 1 (of 1 total)
Here's a query hat outputs what I'm thinking you want. You could easily turn it into a function that returns a table.
DECLARE
@FromDate smalldatetime,
@ToDate smalldatetime
@DaysFromTo TABLE (DayInBetween datetime)
select @FromDate =...
August 27, 2008 at 2:32 pm
#863977