Get just the Date from grouping in select from DateTime column in SQL Server - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T14:46:18Zhttp://stackoverflow.com/feeds/question/542780http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/542780/get-just-the-date-from-grouping-in-select-from-datetime-column-in-sql-server1Get just the Date from grouping in select from DateTime column in SQL ServerMax Fraser2009-02-12T19:04:06Z2009-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 <= 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#5427970Answer by mson for Get just the Date from grouping in select from DateTime column in SQL Servermson2009-02-12T19:07:17Z2009-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#5428024Answer by casperOne for Get just the Date from grouping in select from DateTime column in SQL ServercasperOne2009-02-12T19:08:12Z2009-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#5428110Answer by Mark Ransom for Get just the Date from grouping in select from DateTime column in SQL ServerMark Ransom2009-02-12T19:12:55Z2009-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#5428141Answer by Frederik Gheysels for Get just the Date from grouping in select from DateTime column in SQL ServerFrederik Gheysels2009-02-12T19:13:10Z2009-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#5428220Answer by James for Get just the Date from grouping in select from DateTime column in SQL ServerJames2009-02-12T19:13:53Z2009-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 <= 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#5461630Answer by Conrad for Get just the Date from grouping in select from DateTime column in SQL ServerConrad2009-02-13T14:39:41Z2009-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#7127670Answer by Andy M for Get just the Date from grouping in select from DateTime column in SQL ServerAndy M2009-04-03T06:45:01Z2009-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>