Get just the Date from grouping in select from DateTime column in SQL Server - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T14:46:18Z http://stackoverflow.com/feeds/question/542780 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/542780/get-just-the-date-from-grouping-in-select-from-datetime-column-in-sql-server 1 Get just the Date from grouping in select from DateTime column in SQL Server Max Fraser 2009-02-12T19:04:06Z 2009-04-03T07:00:04Z <p>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:</p> <pre><code>SELECT AutoShipItems.CustomerID,AutoShipItems.NextOrderDate, Customer.FirstName,Customer.LastName, Customer.EmailAddress FROM AutoShipItems INNER JOIN Customer ON AutoShipItems.CustomerID =Customer.CustomerID WHERE (AutoShipItems.NextOrderDate &lt;= GETDATE()) GROUP BY AutoShipItems.CustomerID, AutoShipItems.NextOrderDate, Customer.FirstName, Customer.LastName, Customer.EmailAddress ORDER BY AutoShipItems.NextOrderDate </code></pre> http://stackoverflow.com/questions/542780/get-just-the-date-from-grouping-in-select-from-datetime-column-in-sql-server/542797#542797 0 Answer by mson for Get just the Date from grouping in select from DateTime column in SQL Server mson 2009-02-12T19:07:17Z 2009-02-12T19:07:17Z <p>cast (x as date)</p> <p>or </p> <p>year(x) month(x) day(x)</p> http://stackoverflow.com/questions/542780/get-just-the-date-from-grouping-in-select-from-datetime-column-in-sql-server/542802#542802 4 Answer by casperOne for Get just the Date from grouping in select from DateTime column in SQL Server casperOne 2009-02-12T19:08:12Z 2009-02-12T19:08:12Z <p>You can group by this:</p> <pre><code>cast(floor(cast(AutoShipItems.NextOrderDate as float)) as datetime) </code></pre> <p>I put this into a scalar user-defined function to make it easier:</p> <pre><code>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 </code></pre> <p>Which you would then call like this:</p> <pre><code>GROUP BY AutoShipItems.CustomerID, dbo.xfn_TrimTimeFromDateTime(AutoShipItems.NextOrderDate), Customer.FirstName, Customer.LastName, Customer.EmailAddress </code></pre> <p>Note that you might have to change the values in the SELECT clause, since you are grouping by something different now.</p> http://stackoverflow.com/questions/542780/get-just-the-date-from-grouping-in-select-from-datetime-column-in-sql-server/542811#542811 0 Answer by Mark Ransom for Get just the Date from grouping in select from DateTime column in SQL Server Mark Ransom 2009-02-12T19:12:55Z 2009-02-12T19:12:55Z <p>See <a href="http://www.sql-server-helper.com/functions/get-date-only.aspx" rel="nofollow">this link</a> for three different versions of a date-only function. Here's the one I ended up using:</p> <pre><code>CREATE FUNCTION [dbo].[fn_GetDateOnly] ( @pInputDate DATETIME ) RETURNS DATETIME BEGIN RETURN CAST(CONVERT(VARCHAR(10), @pInputDate, 111) AS DATETIME) END </code></pre> http://stackoverflow.com/questions/542780/get-just-the-date-from-grouping-in-select-from-datetime-column-in-sql-server/542814#542814 1 Answer by Frederik Gheysels for Get just the Date from grouping in select from DateTime column in SQL Server Frederik Gheysels 2009-02-12T19:13:10Z 2009-02-12T19:13:10Z <p>What about this:</p> <pre><code>select convert(datetime, convert(varchar(10), getdate(), 112)) </code></pre> http://stackoverflow.com/questions/542780/get-just-the-date-from-grouping-in-select-from-datetime-column-in-sql-server/542822#542822 0 Answer by James for Get just the Date from grouping in select from DateTime column in SQL Server James 2009-02-12T19:13:53Z 2009-02-12T19:13:53Z <p>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.</p> <pre><code>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 &lt;= GETDATE()) GROUP BY AutoShipItems.CustomerID, convert(nvarchar(10), AutoShipItems.NextOrderDate, 110) , Customer.FirstName, Customer.LastName, Customer.EmailAddress ORDER BY AutoShipItems.NextOrderDate </code></pre> http://stackoverflow.com/questions/542780/get-just-the-date-from-grouping-in-select-from-datetime-column-in-sql-server/546163#546163 0 Answer by Conrad for Get just the Date from grouping in select from DateTime column in SQL Server Conrad 2009-02-13T14:39:41Z 2009-02-13T14:39:41Z <p>Converting to a named string format is a pretty simple way to about this issue. Here is a detailed <a href="http://thinkersroom.com/bytes/2009/01/21/date-handling" rel="nofollow">explanation and some samples</a></p> http://stackoverflow.com/questions/542780/get-just-the-date-from-grouping-in-select-from-datetime-column-in-sql-server/712767#712767 0 Answer by Andy M for Get just the Date from grouping in select from DateTime column in SQL Server Andy M 2009-04-03T06:45:01Z 2009-04-03T07:00:04Z <p>If it is all just about grouping, you can convert the datetime expression to int as well.</p> <p>Simple <code>CAST(datetime AS int)</code> actually rounds the datetime to the nearest date rather than drops the time part. Thence,</p> <pre><code>CAST(datetime - 0.5 AS int) </code></pre> <p>Another way:</p> <pre><code>CAST(CAST(datetime AS float) AS int) </code></pre> <p>(Unlike datetimes, floats are truncated when cast to int.)</p> <p>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.</p>