show/hide this revision's text 2 improved formatting

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).int)

Another way:

CAST(CAST(datetime AS float) AS int). 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.

show/hide this revision's text 1

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.