vote up 1 vote down star
1

Hi I have a variable of DateTime type in SQL. Just need to have Date part of it.

please Help?

flag

49% accept rate
In future please state the database engine and version you're using. – Joel Mansford Jul 14 at 21:48

10 Answers

vote up 0 vote down

datepart(day, datetimevalue)

link|flag
That only gives the day of the month, for example today is the 16th of July, so datepart(day, getdate()) would return 16. I think he wants '2009-07-16' instead. – Rick Jul 15 at 23:32
full syntax is datepart(Year|Day|Month|Hour|...., datetimevalue). he can get the part and concart..... – SilentChaos Jul 21 at 17:54
vote up 1 vote down

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.

link|flag
vote up 0 vote down

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 ON clauses.

link|flag
Why scalar? Inline ones perform much better. – AlexKuznetsov Jul 14 at 13:55
Very true. A deterministic CLR UDF may be even more efficient, but I've never tested this myself, and couldn't find anything through Google. – WCWedin Jul 14 at 14:58
vote up 0 vote down

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

link|flag
vote up 0 vote down
SELECT DATEADD(day, DATEDIFF(day, '19900101', CURRENT_TIMESTAMP), '19900101')

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.

link|flag
vote up 4 vote down

If you just need a varchar representation of the date, you can use the convert function, e.g.

select convert(varchar, getDate(), 102) /* 2009.07.14 */

If you need a datetime (midnight on the given date), you can just convert it back.

select convert(datetime, convert(varchar, getDate(), 102), 102)
link|flag
COnverting to varchar and back is very slow. – AlexKuznetsov Jul 14 at 13:55
vote up 2 vote down

Found this using Google

SELECT CONVERT(DATETIME, FLOOR(CONVERT(FLOAT, GETDATE())))

link|flag
1  
I do find this amusing, but does anyone really need a link to Google these days? :-D – tags2k Jul 14 at 11:57
1  
Some people apparently do :-D. – Colin Jul 14 at 12:05
@tags2k & Colin: I should say that I googled before putting my question here in stackoverflow but I didn't find any solution for my problem. If you replace a datetime value with GETDATE() in your above query (and time part uses ب.ظ or ق.ظ at the end ) your query won't execute properly. this is because I put the question here. Any way Thank you. – odiseh Jul 15 at 7:52
vote up 2 vote down
SELECT DATEADD(dd, 0, DATEDIFF(dd, 0, GETDATE()))

The result is: “2009-07-14 00:00:00.000”

Edit: guess the next variant is more common:

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

because of the day pattern can be easily changed to week or month pattern. It is very useful when the GROUP BY clause should group by week of month (reports).

link|flag
vote up 1 vote down
-- Sneaky CAST/DATEDIFF trick strips off the time to get just the day (midnight)!
CAST(DATEDIFF(d,0,DateField) AS DATETIME) AS DayField
link|flag

Your Answer

Get an OpenID
or

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