This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Calculates the difference between dates excluding weekends */ | |
ALTER FUNCTION [dbo].[CalculateNumberOfWorkDays] (@StartDate datetime, @EndDate datetime) | |
RETURNS int | |
AS | |
BEGIN | |
SET @StartDate = DATEADD(dd, DATEDIFF(dd, 0, @StartDate), 0) | |
SET @EndDate = DATEADD(dd, DATEDIFF(dd, 0, @EndDate), 0) | |
DECLARE @WORKDAYS INT | |
SELECT @WORKDAYS = (DATEDIFF(dd, @StartDate, @EndDate)) | |
-(DATEDIFF(wk, @StartDate, @EndDate) * 2) | |
-(CASE WHEN DATENAME(dw, @StartDate) = 'Sunday' THEN 1 ELSE 0 END) | |
-(CASE WHEN DATENAME(dw, @EndDate) = 'Saturday' THEN 1 ELSE 0 END) | |
RETURN @WORKDAYS | |
END |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment