SQL Server takes month and month intervals at the beginning of the month

Source: Internet
Author: User
Tags datetime getdate

The development of commonly used, recorded down, provided to the need for reference friends!

--1 at the end of the month.

DECLARE @startdate datetime

Select @startdate =dateadd (Dd,-datepart (Dd,getdate ()) +1,getdate ())

Select SUBSTRING (Convert (varchar, @startdate, 23), 1,10)

DECLARE @enddate datetime

Select @enddate =dateadd (Dd,-datepart (Dd,getdate ()), DateAdd (Mm,1,getdate ())

Select SUBSTRING (Convert (varchar, @enddate, 23), 1,10)

--2. Take one months interval

DECLARE @startdate datetime

Select @startdate = DATEADD (Mm,-1,dateadd (dd,-datepart (dd,getdate ()) +1,getdate ())

Select SUBSTRING (Convert (varchar, @startdate, 23), 1,10)

DECLARE @enddate datetime

Select @enddate =dateadd (MM, -1,dateadd (Dd,-datepart (Dd,getdate ()) +1,dateadd (Mm,1,getdate ()))

Select SUBSTRING (Convert (varchar, @enddate, 23), 1,10)

See more highlights of this column: http://www.bianceng.cnhttp://www.bianceng.cn/database/SQLServer/

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.