sql某个日期是当年的第几周
/**周一作为一周的开始
*当年的1月1号所在的周算作第一周
*/CREATEfunction GetWeekIndexFirstDate
(
@datedatetime
)
returnsint
as
begin
/*
*计算逻辑
*1.先找出当年的1月1号@firstDate
*2.计算出当年的第一个周日@firstSunday
*3.以@firstSunday为分界线,@firstSunday前面的算作第一周,@firstSunday后面的通过除7再加1,来计算周数
*/
declare@indexint;
declare@firstDatedatetime;--当年的1月1号
declare@firstSundaydatetime;--当年的第一个周日
declare@firstWeekSundaydatetime;--当年的第一周的周日
set@firstDate=convert(datetime,convert(varchar(4),Year(@date)) +"-1-1")
set@firstSunday=casewhendatepart(dw,@firstDate)=1then@firstDateelsedateadd(dd,8-datepart(dw,@firstDate),@firstDate) end;
if(@date<=@firstSunday)
set@index=1;
else
set@index=ceiling(datediff(dd,@firstSunday,@date)/7.0)+1
return@index;
end
/*
*周一作为一周的开始
*当年的第一个周一所在的周算作第一周
*/
CREATEfunction GetWeekIndexFirstMonday
(
@datedatetime
)
returnsint
as
begin
/*
*计算逻辑
*1.先找出当年的1月1号@firstDate
*2.计算出当年的第一个周一@firstMonday
*3.以@firstMonday为分界线,@firstMonday前面的算作上一年的最后一周,@firstMonday后面的通过除7再加1,来计算周数
*/
declare@indexint;
declare@firstDatedatetime;--当年的1月1号
declare@firstMondaydatetime;--当年的第一个周一
declare@lastYearFirstDatedatetime;--上一年的1月1号
declare@lastYearFirstMondaydatetime;--上一年的第一个周一
select@firstDate=convert(datetime,convert(varchar(4),Year(@date)) +"-1-1")
, @lastYearFirstDate=convert(datetime,convert(varchar(4),datepart(yyyy,@date)-1) +"-1-1")
select@firstMonday=casewhendatepart(dw,@firstDate)<=2thendateadd(dd,2-datepart(dw,@firstDate) ,@firstDate)
elsedateadd(dd,9-datepart(dw,@firstDate),@firstDate) end
,@lastYearFirstMonday=casewhendatepart(dw,@lastYearFirstDate)<=2thendateadd(dd,2-datepart(dw,@lastYearFirstDate) ,@lastYearFirstDate)
elsedateadd(dd,9-datepart(dw,@lastYearFirstDate),@lastYearFirstDate) end;
if(@date>=@firstMonday)
set@index=floor(datediff(dd,@firstMonday,@date)/7.0)+1;
else
set@index=floor(datediff(dd,@lastYearFirstMonday,@date)/7.0)+1
return@index;
end
以上是 sql某个日期是当年的第几周 的全部内容, 来源链接: utcz.com/z/533491.html