Most of us have seen, among many ways to chop the time off a datetime:
But you know what occurred to me? If the value is already going to be cast as datetime, using an integer data type works because it gets promoted. Which means the DateAdd is completely redundant. The dateadd is adding 0 to an integer to get a date which already is that integer, because you're adding 0! Look:
Getting the time is just as simple, only you don't ever need the convert:
Isn't that cool?
And checking to see that a date has no time portion, or no date portion, just got easier, too:
[COLOR=black #d0d0d0]When I walk, I sometimes bump into things. I am closing my eyes so that the room will be empty.[/color]
Code:
SELECT DateAdd(dd, DateDiff(dd, 0, GetDate())
Code:
DECLARE @DateDemo TABLE (TheDate datetime NOT NULL)
INSERT @DateDemo SELECT DateDiff(dd, 0, GetDate())
SELECT * From @DateDemo
-- and if you absolutely must have a datetime value, then:
SELECT Convert(datetime, DateDiff(dd, 0, GetDate()))
-- which to me is better because convert is likely a less CPU intensive function... maybe testing is in order. There is at least one less operand. And it may be more clear to a programmer's eyes what is going on in there.
Getting the time is just as simple, only you don't ever need the convert:
Code:
SELECT GetDate() - DateDiff(dd, 0, GetDate())
And checking to see that a date has no time portion, or no date portion, just got easier, too:
Code:
SELECT CASE WHEN GetDate() = DateDiff(dd, 0, GetDate()) THEN '12:00:00 exactly' ELSE 'some time value' END
SELECT CASE WHEN 0 = DateDiff(dd, 0, GetDate()) THEN 'Date Portion = 0' ELSE 'some date value' END
[COLOR=black #d0d0d0]When I walk, I sometimes bump into things. I am closing my eyes so that the room will be empty.[/color]