Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

SqlServer Series Notes-date function

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)06/01 Report--

GETDATE (): get the current date and time

DATEADD (datepart, number, date) to calculate the date after the increase. Parameter date is the date to be calculated; parameter number is increment; parameter datepart is the unit of measurement. For optional values, please see remarks.

DATEADD (DAY, 3 ~ date) is the date after the calculation date date3, while DATEADD (MONTH,-8 ~ ~ date) is the date before the calculation date date8

DATEDIFF (datepart, startdate, enddate): calculates the difference between two dates. Datepart is the unit of measurement, and the available value is referred to DateAdd.

Count the number of employees with different seniority:

Select DateDiff (year,FInDate,getdate ()), count (*) from T_Employee group by DateDiff (year,FInDate,getdate ())

DATEPART (datepart,date): returns a specific part of a date

The function of common date function

GETDATE () gets the current time of the system

DAY () gets the number of days in a date

MONTH () gets the month of a date

YEAR () gets the year in a date

DateDiff (date element, date 1, date 2) finds the difference between the date elements of two dates

DateName (date element, date) returns a date element as a character

DatePart (date element, date) returns the date element as an integer

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report