T-sql:17 a date-time related Custom function (UDF)

Source: Internet
Author: User
Tags datetime
/*
T-sql:17 a date-time related Custom function (UDF), Sunday as the last day of the week, not affected by the @ @DateFirst, language version
are collected or refined from the old articles!
Tips:
(@ @Datefirst + datepart (weekday, @Date))% 7 judgment Week is the most insured! Independent of @ @DateFirst and language version
@ @DateFirst may cause datepart (weekday, @Date) different!
No matter what the @ @DateFirst equals, no matter what language version of SQL Server is always set under forever!
(@ @Datefirst + datepart (weekday, @Date))%7:2, 3, 4, 5, 6, 0, 1 respectively represent Monday to Sunday
-- */
Create function Udf_getage (@StartDate datetime, @EndDate datetime)
Returns integer
--Return to the exact age select Dbo.udf_getage (' 1949-10-01 ', GETDATE ())
Begin
Return DateDiff (year, @StartDate, @EndDate)
-Case when DateDiff (Day,dateadd (Year,datediff, @StartDate, @EndDate), @StartDate), @EndDate) >= 0
Then 0
Else
1
End
End
Go
Create function Udf_daysofyearbydate (@Date datetime)
Returns integer
--The number of days to return the year can be judged flat (365), run (366) years
Begin
Return DateDiff (Day,dateadd (Year,datediff (year,0, @Date), 0), DateAdd (Year,datediff (year,0, @Date) + 1,0)
End
Go
Create function Udf_daysofyear (@Year integer)
Returns integer
--The number of days to return the year can be judged flat (365), run (366) years
Begin
Return DateDiff (Day,dateadd, @year-year (0), 0), DateAdd (year, @year-year (0) + 1,0))
End
Go
Create function Udf_halfday (@Date datetime)
returns datetime
--Return @Date is the morning return of the @Date 0 points, @Date is back in the afternoon @Date 12 points
Begin
Return case when DATEPART (hour, @Date) < 12
Then DateAdd (Day,datediff (day,0, @Date), 0)--morning to 0.
Else

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.