Switch: SQL Server user-defined function: count the number of workdays between two dates

Source: Internet
Author: User

Create function kmes. workDay_f (@ dt_begin datetime, @ dt_end datetime) RETURNS intASBEGIN DECLARE @ workday int, @ I int, @ bz bit, @ dt datetime set @ dt_begin = convert (datetime, convert (nvarchar (32), @ dt_begin, 23) set @ dt_end = convert (datetime, convert (nvarchar (32), @ dt_end, 23 )) IF @ dt_begin> @ dt_end SELECT @ bz = 1, @ dt = @ dt_begin, @ dt_begin = @ dt_end, @ dt_end = @ dt else set @ bz = 0 SELECT @ I = DATEDIFF (Day, @ dt_begin, @ dt_end), @ workday = @ I/7*5, @ dt_begin = DATEADD (Day, @ I/7*7, @ dt_begin) 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) ENDGO

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.