系统城装机大师 - 固镇县祥瑞电脑科技销售部宣传站!

当前位置:首页 > 数据库 > MsSql > 详细页面

sql某个日期是当年的第几周

时间:2020-05-15来源:电脑系统城作者:电脑系统城

复制代码
/*
*周一作为一周的开始
*当年的1月1号所在的周算作第一周
*/
CREATE function GetWeekIndexFirstDate
(
   @date datetime
)
returns int
as
begin
 
/*
*计算逻辑
*1.先找出当年的1月1号@firstDate
*2.计算出当年的第一个周日@firstSunday
*3.以@firstSunday为分界线,@firstSunday前面的算作第一周,@firstSunday后面的通过除7再加1,来计算周数
*/
 
   declare @index int;
   declare @firstDate datetime;--当年的1月1号
   declare @firstSunday datetime;--当年的第一个周日
   declare @firstWeekSunday datetime;--当年的第一周的周日
 
   set @firstDate = convert(datetime,convert(varchar(4),Year(@date)) + '-1-1')
 
   set @firstSunday = case when datepart(dw,@firstDate)=1 then @firstDate else dateadd(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



 
 
/*
*周一作为一周的开始
*当年的第一个周一所在的周算作第一周
*/
CREATE function GetWeekIndexFirstMonday
(
   @date datetime
)
returns int
as
begin
 
 
 
/*
*计算逻辑
*1.先找出当年的1月1号@firstDate
*2.计算出当年的第一个周一@firstMonday
*3.以@firstMonday为分界线,@firstMonday前面的算作上一年的最后一周,@firstMonday后面的通过除7再加1,来计算周数
*/
 
   declare @index int;
   declare @firstDate datetime;--当年的1月1号
   declare @firstMonday datetime;--当年的第一个周一
   declare @lastYearFirstDate datetime;--上一年的1月1号
   declare @lastYearFirstMonday datetime;--上一年的第一个周一
 
   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 = case when datepart(dw,@firstDate)<=2 then dateadd(dd,2-datepart(dw,@firstDate) ,@firstDate)
                      else dateadd(dd,9-datepart(dw,@firstDate),@firstDate) end
      ,@lastYearFirstMonday = case when datepart(dw,@lastYearFirstDate)<=2 then dateadd(dd,2-datepart(dw,@lastYearFirstDate) ,@lastYearFirstDate)
                      else dateadd(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 Server 数据库中的收缩数据库和文件操作

    收缩数据文件通过将数据页从文件末尾移动到更靠近文件开头的未占用的空间来恢复空间,在文件末尾创建足够的空间后,可取消对文件末尾的数据页的分配并将它们返回给文件系统,本文给大家介绍SQL Server 数据库中的收缩数据...

    2023-10-27

  • dbeaver配置SQL server连接实现

    一、需要java jdk环境,我用的比较新 二、dbeaver新建连接SQL server...

    2023-10-27

系统教程栏目

栏目热门教程

人气教程排行

站长推荐

热门系统下载