In SQL, how does one add year, month, day, hour, minute, and second to datetime data?

Source: Internet
Author: User

When you troubleshoot SharePoint problems, you often need to query the SharePoint database. Sometimes you need to perform some operations on the time.

For example, when troubleshooting alert problems, you often need to use the following query:

 
SelectItemname,Eventdata,ACL,EventtimeFromEventcacheWhere(ACLIs not null) and (EventdataIs not null)OrderEventtimeDesc

 

However, the eventtime here is the GMT time, which does not seem intuitive to us in China, because we are using GMT + 8 Beijing time. You can use the following statement to correct the result.

SelectItemname,Eventdata,ACL,Dateadd(Hour,8,Eventtime)FromEventcacheWhere(ACLIs not null) and (EventdataIs not null)OrderEventtimeDesc

 

You can find the answer in the following documents to modify the year, month, or day.

Dateadd (TRANSACT-SQL)

http://msdn.microsoft.com/en-us/library/ms186819.aspx

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.