How to compare only date part when delivery date is today

后端 未结 5 615
既然无缘
既然无缘 2021-02-05 08:59

I\'m trying to create a report that gets records from a SQL Server database where the delivery date is today.

I\'ve tried

select * from (tablename)
where         


        
5条回答
  •  情深已故
    2021-02-05 09:18

    Try this:

    DECLARE @Today DATETIME
    SET @Today= CONVERT(date, getdate())
    
    select * from (tablename)
    where delivery_date = @Today
    

提交回复
热议问题