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
Returns: I want that date part without the time part: |
|||||||||||
|
for example
gives me
Pros:
|
|||||||||||||||||||||
|
|
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:
|
|||||||||||
|
|
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:
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
SELECT DATEADD(dd, 0, DATEDIFF(dd, 0, MyDate)) FROM 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. |
|||||||||||||
|
|
Why not just
? |
|||||||||||||
|
|
Using FLOOR() - just cut time part.
|
|||
Edit: The first two methods are essentially the same, and out perform the convert to varchar method. |
||||
|
|
|||||
|
|
|
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 ] ) |
|||
|
|
|
|||
|
|
|
IF you want to use CONVERT and get the same output as in the original question posed, that is, yyyy-mm-dd then use 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. |
|||
|
|
simple thing is convert getdate in date with 101 format and it will work :) for example
|
||||
|