好的,我还没有测试过,但我认为最有效的方法是通过一个计数表,无论如何这在数据库中都是有用的:
IF EXISTS (SELECT * FROM sys.objects
WHERE object_id = OBJECT_ID(N'[dbo].[num_seq]') AND type in (N'U'))
DROP TABLE [dbo].[num_seq];
SELECT TOP 100000 IDENTITY(int,1,1) AS n
INTO num_seq
FROM MASTER..spt_values a, MASTER..spt_values b;
CREATE UNIQUE CLUSTERED INDEX idx_1 ON num_seq(n);
然后,您可以使用它来建立两个日期之间的日期范围。它很快,因为它只使用索引(实际上通常比循环快,所以我被引导相信)
create procedure getDates
@eventId int
AS
begin
declare @startdate datetime
declare @enddate datetime
--- get the start and end date, plus the start of the month with the start date in
select @startdate=startdate,
@enddate=enddate
from events where eventId=@eventId
select
@startdate+n AS date,
from
dbo.num_seq tally
where
tally.n<datediff(@monthstart, @enddate) and
Datepart(dd,@startdate+n) between 15 and 21 and
Datepart(dw, @startdate+n) = '<day>'
除了获取开始日期和结束日期外,每个月的第三个 x id 必须介于 15 日和 21 日之间。该范围内的日期名称必须是唯一的,因此我们可以立即找到它。
如果您想要第二个日期名称,只需适当修改范围或使用参数来计算它。
它使用 startdate 构造一个日期表,然后添加天数(通过计数表中的数字列表)直到它到达结束日期。
希望能帮助到你!