vote up 1 vote down star

I need to group some records based on a date but it is a date and time field and I need to ignore the time part of is and just group by the date part - here is my SQL as it stands:

SELECT   
    AutoShipItems.CustomerID,AutoShipItems.NextOrderDate,
    Customer.FirstName,Customer.LastName, Customer.EmailAddress
FROM        
    AutoShipItems 
        INNER JOIN    Customer ON 
            AutoShipItems.CustomerID =Customer.CustomerID
WHERE     
    (AutoShipItems.NextOrderDate <= GETDATE())
GROUP BY 
    AutoShipItems.CustomerID, AutoShipItems.NextOrderDate, 
    Customer.FirstName, Customer.LastName, 
    Customer.EmailAddress
ORDER BY 
    AutoShipItems.NextOrderDate
flag

74% accept rate

7 Answers

vote up 4 vote down check

You can group by this:

cast(floor(cast(AutoShipItems.NextOrderDate as float)) as datetime)

I put this into a scalar user-defined function to make it easier:

create function [dbo].[xfn_TrimTimeFromDateTime]
(
    @date as datetime
)
returns datetime with schemabinding as
begin
    --- Convert to a float, and get the integer that represents it.
    --- And then convert back to datetime.
    return cast(floor(cast(@date as float)) as datetime)
end

Which you would then call like this:

GROUP BY
    AutoShipItems.CustomerID, 
    dbo.xfn_TrimTimeFromDateTime(AutoShipItems.NextOrderDate), 
    Customer.FirstName, Customer.LastName, Customer.EmailAddress

Note that you might have to change the values in the SELECT clause, since you are grouping by something different now.

link|flag
worked like a charm – Max Fraser Feb 12 at 19:24
lol - or you could do cast(x as date)... – mson Feb 12 at 22:18
it's not defined as a type in my version on MS SQL Server 2005 – Max Fraser Feb 13 at 13:26
@mson: Date is not a recognized type in SQL Server, as it has been pointed out in a few other responses. – casperOne Feb 13 at 14:11
+1 that is a really clean approach. – cmsjr Feb 19 at 20:36
show 1 more comment
vote up 0 vote down

cast (x as date)

or

year(x) month(x) day(x)

link|flag
Date isn't a defined type in MS SQL Server. But year, month, day work just fine. – Mark Ransom Feb 12 at 19:31
date is a defined type - check it out – mson Feb 12 at 21:58
DATE was defined in SQL2008, not in SQL2005 or earlier versions – Kristen Feb 19 at 21:00
vote up 0 vote down

See this link for three different versions of a date-only function. Here's the one I ended up using:

CREATE FUNCTION [dbo].[fn_GetDateOnly]  ( @pInputDate    DATETIME )
RETURNS DATETIME
BEGIN

    RETURN CAST(CONVERT(VARCHAR(10), @pInputDate, 111) AS DATETIME)

END
link|flag
15 seconds too slow, I am ... – Frederik Gheysels Feb 12 at 19:13
But, why use 111 (japanese) instead of 112 (iso) ? – Frederik Gheysels Feb 12 at 19:17
Because ISO format 112 doesn't have punctuation, it's possible for the conversion back to datetime to guess the format wrong. I wish there was a format for yyyy-mm-dd with no time; that would be my preference. – Mark Ransom Feb 12 at 19:32
Pls beware that CONVERT(VARCHAR method of removing Time is several times slower than CAST(FLOOR(CAST or DATEADD(DATEDIFF methods See also: stackoverflow.com/questions/133081/… (which I have tested similarly too) – Kristen Feb 19 at 21:05
Actually, just tried SELECT CAST(CONVERT(VARCHAR(10), GetDate(), 111) AS DATETIME) here, and it gives error with my server configuration – Kristen Feb 19 at 21:06
vote up 1 vote down

What about this:

select convert(datetime, convert(varchar(10), getdate(), 112))
link|flag
vote up 0 vote down

You can also just use the plain old SQL convert function. The last argument lets you provide pre-deifined date formats, some of which remove the time. Here is the revised query.

SELECT    AutoShipItems.CustomerID, convert(nvarchar(10), AutoShipItems.NextOrderDate, 110) as NextOrderDate ,Customer.FirstName,Customer.LastName, 
                     Customer.EmailAddress
FROM        AutoShipItems INNER JOIN
                     Customer ON AutoShipItems.CustomerID =Customer.CustomerID
WHERE     (AutoShipItems.NextOrderDate <= GETDATE())
GROUP BY AutoShipItems.CustomerID, convert(nvarchar(10), AutoShipItems.NextOrderDate, 110) , Customer.FirstName, Customer.LastName, 
                     Customer.EmailAddress
ORDER BY AutoShipItems.NextOrderDate
link|flag
vote up 0 vote down

Converting to a named string format is a pretty simple way to about this issue. Here is a detailed explanation and some samples

link|flag
vote up 0 vote down

If it is all just about grouping, you can convert the datetime expression to int as well.

Simple CAST(datetime AS int) actually rounds the datetime to the nearest date rather than drops the time part. Thence,

CAST(datetime - 0.5 AS int)

Another way:

CAST(CAST(datetime AS float) AS int)

(Unlike datetimes, floats are truncated when cast to int.)

I prefer the former as it is shorter. Not sure which is better in terms of performance, though. Still, the issue may probably only arise on really big arrays of data.

link|flag

Your Answer

Get an OpenID
or

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