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

Which method provides the best performance when removing the time portion from a datetime field in SQL Server?

a) select DATEADD(dd, DATEDIFF(dd, 0, getdate()), 0)

or

b) select cast(convert(char(11), getdate(), 113) as datetime)

The second method does send a few more bytes either way but that might not be as important as the speed of the conversion.

Both also appear to be very fast, but there might be a difference in speed when dealing with hundreds-of-thousands or more rows?

Also, is it possible that there are even better methods to get rid of the time portion of a datetime in SQL?

share|improve this question
1  
I've tried this out on one million records in one of my production tables and I couldn't get an accurate reading on performance either way. Both methods returned the exact same amount of data though. – Stephen Perelson Jul 24 '09 at 13:05
7  
On 18,000,000 rows this is what I've found (SQL Server 2008): Method b is about 24% slower than method a. CAST(FLOOR(CAST(getdate() AS FLOAT)) AS DATETIME) is 3.5% slower than method a. Method a seems to be a winner with regards to performance. Thanks all for the great answers. – Stephen Perelson Jul 24 '09 at 13:33
7  
Why the heck doesn't SQL have a built-in function to do this anyway?!! – Gary McGill Jul 24 '09 at 14:17
2  
SQL 2008's new DATE datatype will handle this. Me, I'm still pissed they didn't add this to SQL 2000! – Philip Kelley Jul 24 '09 at 14:23
2  
show 2 more comments

13 Answers

up vote 131 down vote accepted

Strictly, method a is the least resource intensive.

Proven less CPU intensive for same total duration a million rows by some one with way too much time on their hands: Most efficient way in SQL Server to get date from date+time?

I saw a similar test elsewhere with similar results too.

I prefer the DATEADD/DATEDIFF because:

Edit, Oct 2011

For SQL Server 2008+, you can CAST to date. Or just use date so no time to remove.

Edit, Jan 2012

A worked example of how flexible this is: Need to calculate by rounded time or date figure in sql server

Edit, May 2012

Do not use this in WHERE clauses and the like without thinking: adding a function or CAST to a column invalidates index usage. See number 2 here: http://www.simple-talk.com/sql/t-sql-programming/ten-common-sql-programming-mistakes/

Now, this does have an example of later SQL Server optimiser versions managing CAST to date correctly, but generally it will be a bad idea ...

share|improve this answer
3  
This is the only way to go ;) – Dems Jul 24 '09 at 13:21
3  
Thank you @gbn for your continued edits and additions. It makes a great answer even greater. – Stephen Perelson May 18 '12 at 20:39
2  
+1 for CAST() function. – net_prog Jul 26 '12 at 8:41
thanks for the follow up edits – Malachi Oct 16 '12 at 19:47
SELECT CAST(FLOOR(CAST(getdate() AS FLOAT)) AS DATETIME)
share|improve this answer
See GBN's answer, many have investigated this. DATETIMEs are NOT stored as floats, and so using DATEADD/DATEDIFF avoids the mathmatical manipulation need to CAST between types. – Dems Jul 24 '09 at 13:29
I can accept that you might want to avoid a cast from DATETIME to FLOAT for the reason you describe, but in that case isn't the implicit conversion from zero in the OPs option (a) also a problem? Hmmm... I suppose in that case it's not a FLOAT and that the server is probably smart enough to discard the time info. OK, I concede :-) – Gary McGill Jul 24 '09 at 14:16
The 0 is indeed an implicit conversion from a numeric type (INT I would guess) to a DATETIME. Because it's a constant expression, however, the optimiser can do that at compile time for Stored Procedures and only needs to do it once for dynamically execute SQL. In short, there is a one time overhead for that, the FLOAT based query has the equivilent overhead for every Row. – Dems Jul 26 '09 at 15:03
Casting to float is terribly unprecise. This answer should be deleted. Nobody should use this code. – usr Jun 3 '12 at 18:57

See this question:
http://stackoverflow.com/questions/923295/how-to-truncate-a-datetime-in-sql-server

Whatever you do, don't use the string method. That's about the worst way you could do it.

share|improve this answer
Thanks, I figured this had to have been asked before. Strange though that my experiments pointed out that the float method is actually slower by 3.5% on SQL Server 2008 than the dateadd(dd,0, datediff(dd,0, getDate())) method. I did run my tests many times for each method and the database server was unused for anything else at the time. – Stephen Perelson Jul 24 '09 at 13:48
Let's just say that I'm skeptical of benchmarks done by anyone who hasn't demonstrated that they do benchmarks regularly and in a very scientific way as part of their job. Even Thomas' benchmark in the link by gbn has some obvious problems when you look at it. That doesn't make it wrong necessarily, just not definitive. The cast/floor/cast method was the accepted fastest way for a very long time, and I suspect it was once indisputably true. That said, I am starting to reconsider it; especially for sql server 2008, where it's completely unnecessary anyway. – Joel Coehoorn Jul 24 '09 at 14:44
The string method is extremely easy to use, to read, and to remember. Those are very important factors which I think you are underestimating! – Ben Jan 31 '12 at 12:36
@Ben - easier to read than "CAST( x as Date)" ? The string method is also wrong because it doesn't always work. Deploy your database to a server with a different collation, and you're in big trouble. – Joel Coehoorn Jan 31 '12 at 16:23
@JoelCoehoorn, convert style 121 is called "ODBC Canonical". It does not vary with collation or locale. The string trick is also easy to generalise to year, year+month, day, hour or minute. – Ben Jan 31 '12 at 18:58

Here's yet another answer, from another duplicate question:

SELECT CAST(CAST(getutcdate() - 0.50000004 AS int) AS datetime)

This magic number method performs slightly faster than the DATEADD method. (It looks like ~10%)

The CPU Time on several rounds of a million records:

DATEADD   MAGIC FLOAT
500       453
453       360
375       375
406       360

But note that these numbers are possibly irrelevant because they are already VERY fast. Unless I had record sets of 100,000 or more, I couldn't even get the CPU Time to read above zero.

Considering the fact that DateAdd is meant for this purpose and is more robust, I'd say use DateAdd.

share|improve this answer
That is horrible. I'd never put my data at risk like this. Who knows if this is correct for all datetimes, not just the ones you tested. – usr Jun 3 '12 at 18:58
CAST(round(cast(getdate()as real),0,1) AS datetime)

This method does not use string function. Date is basically a real datatype with digits before decimal are fraction of a day.

this I guess will be faster than a lot.

share|improve this answer

Ofcourse this is an old thread but to make it complete.

From SQL 2008 you can use DATE datatype so you can simply do: SELECT CONVERT(DATE,GETDATE())

share|improve this answer
2  
The accepted answer mentions this option. – Andriy M May 4 '12 at 17:13

For me the code below is always a winner:

SELECT CONVERT(DATETIME, FLOOR(CONVERT(FLOAT,GETDATE())));
share|improve this answer
Essentially same as @Gary McGill's suggestion. – Andriy M Dec 21 '12 at 18:12

Strip time on inserts/updates in the first place. As for on-the-fly conversion, nothing can beat a user-defined function maintanability-wise:

select date_only(dd)

The implementation of date_only can be anything you like - now it's abstracted away and calling code is much much cleaner.

share|improve this answer
I once devised a trigger to scrub times from selected columns. If the data can't be bad, you don't have to clean it. – Philip Kelley Jul 24 '09 at 14:21
2  
There is a downside to the UDF approach, they're not SARGable. If used in JOINs or WHERE clauses, the optimiser can't use INDEXes to improve performance. Using the DATEADD/DATEDIFF approach, however, is SARGable and will be able to benefit from INDEXes. (Apparently the FLOAT method is SARGable too) – Dems Jul 29 '09 at 11:55

I almost always use User Defined functions for this.

In fact, for most databases that I create, I add these UDF's in right near the start since I know there's a 99% chance I'm going to need them sooner or later.

I create one for "date only" & "time only" (although the "date only" one is by far the most used of the two).

Here's some links to a variety of date-related UDF's:

Essential SQL Server Date, Time and DateTime Functions
Get Date Only Function

That last link shows no less than 3 different ways to getting the date only part of a datetime field and mentions some pros and cons of each approach.

Of course, the absolute best approach is to use SQL Server 2008 and separate out your dates and times.

share|improve this answer

Already answered but ill throw this out there too... this suposedly also preforms well but it works by throwing away the decimal (which stores time) from the float and returning only whole part (which is date)

 CAST(
FLOOR( CAST( GETDATE() AS FLOAT ) )
AS DATETIME
)

second time I found this solution... i grabbed this code off

share|improve this answer

I think you mean cast(floor(cast(getdate()as float))as datetime)

real is only 32-bits, and could lose some information

This is fastest cast(cast(getdate()+x-0.5 as int)as datetime)

...though only about 10% faster(about 0.49 microseconds CPU vs. 0.58)

This was recommended, and takes the same time in my test just now: DATEADD(dd, DATEDIFF(dd, 0, getdate()), 0)

In SQL 2008, the SQL CLR function is about 5 times faster than using a SQL function would be, at 1.35 microseconds versus 6.5 microsections, indicating much lower function-call overhead for a SQL CLR function versus a simple SQL UDF.

In SQL 2005, the SQL CLR function is 16 times faster, per my testing, versus this slow function:

create function dateonly (  @dt datetime )
returns datetime
as
begin
return cast(floor(cast(@dt as float))as int)
end
share|improve this answer

Could always use / abuse the casted floating point representation of the date.

Select cast(floor(cast (getdate() as float )) as datetime)

Edit : As pointed out, the internal representation is not as simple as a floating point, but internally, it is 2, 4 byte integers. I've changed my text to say 'casted fp representation' to make that clearer.

share|improve this answer
DateTimes are not represented as FLOATs. They are represented using two independant values. One for the Date part and one for the Time part. The Time part is the number of "time units", where for DATETIME the timeunit is 1/300th of a second. The CAST from DATETIME to FLOAT does require mathmatical manipulation, they really are stored differently. That's why DATEADD/DATEDIFF perform faster. (See GBN's answer) – Dems Jul 24 '09 at 13:27
Yes, float would be a simplification that was sufficient for the SQL to be understood. But I will adjust to the correct definition. – Andrew Jul 24 '09 at 14:15

If possible, for special things like this, I like to use CLR functions.

In this case:

[Microsoft.SqlServer.Server.SqlFunction]
    public static SqlDateTime DateOnly(SqlDateTime input)
    {
        if (!input.IsNull)
        {
            SqlDateTime dt = new SqlDateTime(input.Value.Year, input.Value.Month, input.Value.Day, 0, 0, 0);

            return dt;
        }
        else
            return SqlDateTime.Null;
    }
share|improve this answer

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.