Hi I have a variable of DateTime type in SQL. Just need to have Date part of it.
please Help?
|
1
|
Hi I have a variable of DateTime type in SQL. Just need to have Date part of it. please Help?
|
|||
|
|
|
datepart(day, datetimevalue) |
||||
|
|
|
This has been asked and answered before on Stack Overflow. In fact, it's been asked over and over: |
|||
|
|
|
|
SQL Server 2008 has a date datatype that stores just the date, if you are inthis version, perhaps this would be a better datat type for you to use. Be warned though, Date doesn't work exactly like datetime for data manipulation. |
||
|
|
|
|
A tip: If you find yourself doing this often, you can create a scalar User Defined Function containing the time-stripping logic of your choice. Be warned: SQL Server 2000 has some painful bugs involving UDF's in |
||||
|
|
|
If you want the format 'MM/DD/YY', use "CONVERT(varchar, @datetimevalue, 1) to display just the date. If you need it in datetime format, use "CONVERT(datetime, CONVERT(varchar, @datetimevalue, 1))". I created an entry in my SQL blog about how to retrieve and display all possible formats of the CONVERT(varchar, ..) function: http://jessesql.blogspot.com/2009/04/converting-datetime-values-to-varchar.html |
||
|
|
|
|
A very useful article: "The purpose of this article is to explain how the datetime types work in SQL Server, including common pitfalls and general recommendations."The ultimate guide to the datetime datatypes Note that converting to varchar and back (convert(datetime, convert(varchar, getDate(), 102), 102)) is much slower. |
||
|
|
|
|
If you just need a varchar representation of the date, you can use the convert function, e.g.
If you need a datetime (midnight on the given date), you can just convert it back.
|
|||
|
|
|
Found this using Google SELECT CONVERT(DATETIME, FLOOR(CONVERT(FLOAT, GETDATE()))) |
||||||||||
|
|
|
The result is: “2009-07-14 00:00:00.000” Edit: guess the next variant is more common:
because of the |
|||
|
|
|
|
|
||
|
|