一般性工作時間計算預存程序(SQL SERVER)

來源:互聯網
上載者:User
在統計工作效率的時候,只計算工作時候非常重要
寫了一個一般性工作時間計算的函數CREATE     FUNCTION fun_GetWorkMinute
(
     @startDate DATETIME ,
     @endDate DATETIME
)
RETURNS int 
AS
begin
    declare @DayMinute int,@s_Minute int,@s_Minute2 int
    set @DayMinute = 7*60    --一天工作7個小時
    set @s_Minute = 11*60 + 30     --上午11:30下班
    set @s_Minute2 = 14*60        --下午14上班
    declare @minute int,@day int,@totalDay int
    set @minute = 0
    if @startDate is not null and @endDate is not null
    begin
        set @totalDay = datediff(day,@startDate,@endDate)
        set @day = @totalDay/7 ---周
        if @day > 0
            set @minute = @minute + @day*5* @DayMinute
        declare @sM int,@sM2 int
        set @sM = datepart(hour,@startDate)*60 + datepart(minute,@startDate)
        set @sM2 = datepart(hour,@endDate)*60 + datepart(minute,@endDate)
        set @day = @totalDay - @day * 7
        if @day > 0
            set @minute = @minute + @day* @DayMinute
        --同一個上下午段,非工作時間也類同
        if (@sM >= @s_Minute2 AND  @sM2 >= @s_Minute2) or  (@sM <= @s_Minute AND  @sM2 <= @s_Minute)
            set @minute = @minute - @sM + @sM2
        else if  (@sM >= @s_Minute2)    --上午到下午
            set @minute = @minute - @sM + @sM2 + @s_Minute2 -  @s_Minute
        else        --下午到下一天的上午
            set @minute = @minute - @sM + @sM2 - @s_Minute2 +  @s_Minute
        
    end
    return @minute
end

對於五一,十一沒有作處理,需要加工作日管理的模組

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.