SQL Gets the day before 0:00:00 to 23:59:59 data

Source: Internet
Author: User
Tags getdate

First, preface

Because my company is going to do financial settlement. The day before 0:00:00 to 23:59:59 data, using the dynamic splicing SQL statement

We need to understand that declaring datetime and date gets a different time format, so it's helpful to get the time period data we need

II. test data display (see Print results yourself)

DECLARE @startDateDATE;DECLARE @startDateTime DATETIME;DECLARE @endDateTime DATETIME ;SET @startDate=GETDATE();SELECT @startDateTime=DATEADD( Day,-1,@startDate); SET @endDateTime=DATEADD(Second,-1,CONVERT(DATETIME,@startDate))Print(@startDateTime)Print(CONVERT(DATETIME,@startDate))Print(@startDate)Print(@endDateTime)

III. Dynamic SQL statements

DECLARE @startDateDATE;DECLARE @startDateTime DATETIME;DECLARE @endDateTime DATETIME ;SET @startDate=GETDATE();SELECT @startDateTime=DATEADD( Day,-1,@startDate); SET @endDateTime=DATEADD(Second,-1,CONVERT(DATETIME,@startDate))Declare @sql nvarchar( +)Set @sql='SELECT * from E_orderslogistics where forecasttime>=" "+cast(ISNULL(@startDateTime,"') as nvarchar( -))+" "and forecasttime<" "+CAST(ISNULL(@endDateTime,"') as nvarchar( -))+" '"Print(@sql)exec(@sql)

If you want to reprint, please indicate the source, thank you for your support ~

SQL Gets the day before 0:00:00 to 23:59:59 data

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.