Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
SELECT GETDATE()

Returns: 2008-09-22 15:24:13.790

I want that date part without the time part: 2008-09-22 00:00:00.000

share|improve this question
If you are looking to get a date datatype without the time, even if the time is 00:00:00 then you are out of luck, you can get a varchar but the structure is a datetime and you will always have some time. – Quintin Robinson Sep 22 '08 at 3:39
4  
One thing to note is that SQL Server 2008 includes a separate DATE datatype for storing just dates without the time component. More info here: sql-server-performance.com/articles/dev/datetime_2008_p1.aspx – Ben Hoffstein Sep 22 '08 at 3:44
1  
Don't miss this post showing performance testing results of the various time-removal methods. – ErikE Aug 17 '12 at 22:02

13 Answers

up vote 293 down vote accepted
SELECT DATEADD(dd, 0, DATEDIFF(dd, 0, @your_date))

for example

SELECT DATEADD(dd, 0, DATEDIFF(dd, 0, GETDATE()))

gives me

2008-09-22 00:00:00.000

Pros:

  • No varchar<->datetime conversions required
  • No need to think about locale
share|improve this answer
15  
Cade Roux, sometimes stackoverflow looks like idiotsoverflow. people just downvote without having a tiny bit of understanding of how it works – aku Sep 22 '08 at 3:55
39  
i think it's pretty poor etiquette to downvote without leaving a comment regarding why... – nickf Sep 22 '08 at 3:57
6  
+1 Looks like this one is 35% faster than the double convert() method commonly used (which I also have used for years). Nice one. – Dane Sep 22 '08 at 4:04
3  
+1 I think it´s really clear and simple, it works and you don´t need to worry about locale. – Claudia Jul 27 '11 at 14:12
12  
@pilavdzice Setting a datetime to midnight of that day does LEAVE OFF THE TIME. What result are you expecting? The datetime data type cannot have no time at all. I think you are confusing data storage with user presentation. If all you want is a way to show a user a string that has no time portion (not zeroes, just blanks) then you simply want Convert(varchar(30), @Date, 101) or something similar. See SQL Server Books Online • Cast and Convert for more info. – ErikE Aug 17 '12 at 22:03
show 12 more comments

SQLServer 2008 now has a Date datatype which contains only a date with no time. Anyone using SQLServer 2008 and beyond can do the following:

select CONVERT(date, getdate())
share|improve this answer
6  
There is also the 'time' data type in SQL2008 which answers the other half of the question of separating date and time. – misteraidan Aug 25 '11 at 0:01
1  
Very clean- I like it and it works. Any idea how it compares to other methods performance-wise? – jm2 Jan 13 '12 at 22:43
Thanks, this is good to know. – user78739 Feb 11 at 19:31

DATEADD and DATEDIFF are better than CONVERTing to varchar. Both queries have the same execution plan, but execution plans are primarly about data access strategies and do not always reveal implicit costs involved in the CPU time taken to perform all the pieces. If both queries are run against a table with millions of rows, the CPU time using DateDiff can be close to 1/3rd of the Convert CPU time!

To see execution plans for queries:

set showplan_text on
GO 

Both DATEADD and DATEDIFF will execute a CONVERT_IMPLICIT.

Although the CONVERT solution is simpler and easier to read for some, it is slower. There is no need to cast back to datetime (this is implicitly done by the server). There is also no real need in the DateDiff method for DateAdd afterward as the integer result will also be implicitly converted back to datetime.


SELECT CONVERT(varchar, MyDate, 101) FROM DatesTable

  |--Compute Scalar(DEFINE:([Expr1004]=CONVERT(varchar(30),[TEST].[dbo].[DatesTable].[MyDate],101)))
       |--Table Scan(OBJECT:([TEST].[dbo].[DatesTable]))

SELECT DATEADD(dd, 0, DATEDIFF(dd, 0, MyDate)) FROM DatesTable

  |--Compute Scalar(DEFINE:([Expr1004]=dateadd(day,(0),CONVERT_IMPLICIT(datetime,datediff(day,'1900-01-01 00:00:00.000',CONVERT_IMPLICIT(datetime,[TEST].[dbo].[DatesTable].[MyDate],0)),0))))
       |--Table Scan(OBJECT:([TEST].[dbo].[DatesTable]))

Using FLOOR() as @digi suggested has performance closer to DateDiff, but is not recommended as casting the datetime data type to float and back does not always yield the original value.

Remember guys: Don't believe anyone. Look at the performance statistics, and test it yourself!

Be careful when you're testing your results. Selecting many rows to the client will hide the performance difference becauses it takes longer to send the rows over the network than it does to perform the calculations. So make sure that the work for all the rows is done by the server but there is no rowset sent to the client.

There seems to be confusion for some people about when cache optimization affects queries. Running two queries in the same batch or in separate batches has no effect on caching. So you can either expire the cache manually or simply run the queries back and forth multiple times. Any optimization for query #2 would also affect any subsequent queries, so throw out execution #1 if you like.

Here is full test script and performance results that prove DateDiff is substantially faster than converting to varchar.

share|improve this answer
Ricardo C, nice investigation! What version of SQL server do you use? On MSSQL2000 method with datediff performs slightly faster for me. – aku Sep 24 '08 at 5:29
Just to note, I performed test 1000.000 times. For real-world scenarios performance difference will not be noticeable, I guess – aku Sep 24 '08 at 5:30
Aku, I used SQL Server 2005 Express for this test. I work on 2000 at work, and I will test it with a table with over 24 million rows and see what comes out of it. – Ricardo C Sep 24 '08 at 6:20
Ricardo C, cool! I'm really interested how it will perform on real data base. – aku Sep 24 '08 at 7:51
1  
The claims about equal performance are not true. Of course the execution plans will be the same!!! Measuring performance on these MUST be done by comparing CPU usage, not examining execution plans. – ErikE Sep 12 '10 at 23:01
show 2 more comments

Why not just

select cast(getdate() as date)

?

share|improve this answer
1  
I second the '?'! Very simple, very elegant. – Holf Sep 17 '12 at 13:29
Msg 243, Level 16, State 1, Line 1 Type date is not a defined system type. – Fredrick Gauss Dec 13 '12 at 16:10
@FredrickGauss: What type, Date? What version of SQL Server do you use? – abatishchev Dec 13 '12 at 20:01
1  
Great, but only works in SQL 2008 – mike nelson Apr 10 at 23:09

Using FLOOR() - just cut time part.

SELECT CAST(FLOOR(CAST(GETDATE() AS FLOAT)) AS DATETIME)
share|improve this answer
This method is not the fastest, and also implicitly teaches people that casting dates to float is accurate, which it is not. Please see this post for more detail. – ErikE Sep 12 '10 at 23:16
3  
Float Quantization errors are scary – messenger Dec 6 '10 at 22:09
SELECT CONVERT(datetime, CONVERT(varchar, GETDATE(), 101))
share|improve this answer
select dateadd(dd, datediff(dd, 0, getdate()), 0)

select dateadd(day, 0, datediff(day,0, getdate()))

select convert(datetime, convert(varchar(10), getdate(), 101))

Edit: The first two methods are essentially the same, and out perform the convert to varchar method.

share|improve this answer
These methods are all great, but which single one do you suggest using? – eddiegroves Sep 22 '08 at 3:48
SELECT CONVERT(VARCHAR(10),GETDATE(),111)
share|improve this answer
This returns '2008/09/22' for me – eddiegroves Sep 22 '08 at 3:41
111 is the Japanese format. yyy/mm/dd – Ricardo C Sep 24 '08 at 5:00

Simple and T-SQL compliant:

CAST(GETDATE() AS DATE)
share|improve this answer

You can use the 'convert' function to return only the date. See the link below:

Date and Time Manipulation in SQL Server 2000

The syntax for using the convert function is:

CONVERT ( data_type [ ( length ) ] , expression [ , style ] )

share|improve this answer
select convert(varchar,dateadd(day,-1,getdate()),103) --21/09/2011

select convert(varchar,dateadd(day,-1,getdate()),103) --09/21/2011

select convert(varchar,dateadd(day,-1,getdate()),111) --2011/09/2011
share|improve this answer

IF you want to use CONVERT and get the same output as in the original question posed, that is, yyyy-mm-dd then use CONVERT(varchar(10),[SourceDate as dateTime],121) same code as the previous couple answers, but the code to convert to yyyy-mm-dd with dashes is 121.

If I can get on my soapbox for a second, this kind of formatting doesn't belong in the data tier, and that's why it wasn't possible without silly high-overhead 'tricks' until SQL Server 2008 when actual datepart data types are introduced. Making such conversions in the data tier is a huge waste of overhead on your DBMS, but more importantly, the second you do something like this, you have basically created in-memory orphaned data that I assume you will then return to a program. You can't put it back in to another 3NF+ column or compare it to anything typed without reverting, so all you've done is introduced points of failure and removed relational reference.

You should ALWAYS go ahead and return your dateTime data type to the calling program and in the PRESENTATION tier, make whatever adjustments are necessary. As soon as you go converting things before returning them to the caller, you are removing all hope of referential integrity from the application. This would prevent an UPDATE or DELETE operation, again, unless you do some sort of manual reversion, which again is exposing your data to human/code/gremlin error when there is no need.

share|improve this answer
Except, say, if you want a query that retrieves all records matching a user-supplied date as the date-part of a certain time field. Good luck doing that only in the presentation layer. (You don't need convert, you can can use date arithmetic, but you get the idea…) – Andrew Lazarus Mar 14 at 16:42

simple thing is convert getdate in date with 101 format and it will work :)

for example

select convert(date,GETDATE(),101)
share|improve this answer
This was covered by the answer stackoverflow.com/a/126984/573261 – RichardTheKiwi Oct 26 '12 at 10:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.