当前位置: 首页 > 图文教程 > 数据库 > MSSQL > MSSQL 计算两个日期相差的工作天数的语句

MSSQL
讲解数据库调优与程序员相关的几个方面
揭开微软SQL Server 2008的神秘面纱
SQL Server 2008:表值参数的创建和使用
在SQL Server 2008中运用表值参数(TVP)
解读微软SQL Server 2008空间数据
微软SQL Server 2008 的新压缩特性
带你深入了解SQL Server 2008独到之处
如何使用SQL Server 2008升级顾问
详解SQL Server 2008中的联机事务处理
解读SQL Server 2008的新语句MERGE
使用SQL Server 2008进行服务器合并
SQL Server 2008:开辟崭新数据平台
微软数据平台开发与SQL Server 2008
微软SQL Server 2008之行值构造器
SQL Server 2008 数据加载创世界记录
浅析SQL2008的Change Data Capture功能
SQL Server大数据量统计系统的经验总结
详解Windows Server 2008中的NAP
SqlServer2005对现有数据进行分区具体步骤
无数据库日志文件恢复数据库方法两则(二)

MSSQL 计算两个日期相差的工作天数的语句


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2010-01-10   浏览: 47 ::
收藏到网摘: n/a

MSSQL计算两个日期相差的工作天数的代码,需要的朋友可以参考下。
复制代码 代码如下:

if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[f_WorkDay]') and xtype in (N'FN', N'IF', N'TF'))
drop function [dbo].[f_WorkDay]
GO
--计算两个日期相差的工作天数
CREATE FUNCTION f_WorkDay(
@dt_begin datetime, --计算的开始日期
@dt_end datetime --计算的结束日期
)RETURNS int
AS
BEGIN
declare @i int
select @i=abs(datediff(dd,@dt_begin,@dt_end))
declare @t table(dt datetime)
if @dt_begin>@dt_end
insert @t select dateadd(dd,number,@dt_end) from master..spt_values
where number<=@i and type='P'
else
insert @t select dateadd(dd,number,@dt_begin) from master..spt_values
where number<=@i and type='P'
return(select count(*) from @t where (datepart(weekday,dt)+@@datefirst-1)%7 between 1 and 5)
END
GO
select dbo.f_WorkDay('2009-10-10','2009-10-1')
/*
-----------
7
(1 個資料列受到影響)
*/
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[f_WorkDay]') and xtype in (N'FN', N'IF', N'TF'))
drop function [dbo].[f_WorkDay]
GO
--计算两个日期相差的工作天数
CREATE FUNCTION f_WorkDay(
@dt_begin datetime, --计算的开始日期
@dt_end datetime --计算的结束日期
)RETURNS int
AS
BEGIN
DECLARE @workday int,@i int,@bz bit,@dt datetime
set @workday=0
IF @dt_begin>@dt_end
SELECT @bz=1,@dt=@dt_begin,@dt_begin=@dt_end,@dt_end=@dt
ELSE
SET @bz=0
WHILE @dt_begin<=@dt_end
BEGIN
SELECT @workday=CASE
WHEN (@@DATEFIRST+DATEPART(Weekday,@dt_begin)-1)%7 BETWEEN 1 AND 5
THEN @workday+1 ELSE @workday END,
@dt_begin=@dt_begin+1
END
RETURN(CASE WHEN @bz=1 THEN -@workday ELSE @workday END)
END
GO
select dbo.f_WorkDay('2009-10-10','2009-10-1')
/*
-----------
-7
*/