問(wèn)題描述
如何在不創(chuàng)建存儲(chǔ)過(guò)程、日歷表或遞歸函數(shù)的情況下,在 SQL Server 中列出兩個(gè)日期參數(shù)之間的所有日期?
How can I list all dates between two date parameters in SQL Server, without creating a stored procedure, calendar table or recursive function?
推薦答案
這使用 Master 數(shù)據(jù)庫(kù)中 spt_values 表上的 Row_Number
來(lái)創(chuàng)建日期范圍內(nèi)的年、月和日期列表.然后將其內(nèi)置到日期時(shí)間字段中,并進(jìn)行過(guò)濾以?xún)H返回輸入的日期參數(shù)內(nèi)的日期.
This uses Row_Number
on the spt_values table in Master database to create a list of years, months and dates within the date range.
This is then built into a datetime field, and filtered to only return dates within the date parameters entered.
執(zhí)行速度非常快,并在不到 1 秒的時(shí)間內(nèi)返回 500 年的日期(182987 天).
Very quick to execute and returns 500 years worth of dates (182987 days) in less than 1 second.
Declare @DateFrom datetime = '2000-01-01'
declare @DateTo datetime = '2500-12-31'
Select
*
From
(Select
CAST(CAST(years.Year AS varchar) + '-' + CAST(Months.Month AS varchar) + '-' + CAST(Days.Day AS varchar) AS DATETIME) as Date
From
(select row_number() over(order by number) as Year from master.dbo.spt_values) as Years
join (select row_number() over(order by number) as Month from master.dbo.spt_values) as Months on 1 = 1
join (select row_number() over(order by number) as Day from master.dbo.spt_values) as Days on 1 = 1
Where
Years.Year between datepart(year,@DateFrom) and datepart(year,@DateTo)
and Months.Month between 1 and 12
and
Days.Day between 1 and datepart(day,dateadd(day,-1,dateadd(month,1,(CAST(CAST(Years.Year AS varchar)+'-' + CAST(Months.Month AS varchar) + '-01' AS DATETIME)))))
) as Dates
Where Dates.Date between @DateFrom and @DateTo
order by 1
這篇關(guān)于如何在 SQL 中列出兩個(gè)日期參數(shù)之間的所有日期的文章就介紹到這了,希望我們推薦的答案對(duì)大家有所幫助,也希望大家多多支持html5模板網(wǎng)!