Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

like when I do

SELECT [Date]
  FROM [FRIIB].[dbo].[ArchiveAnalog]
  GROUP BY [Date]

how can I specify the group period ?

MS SQL 2008

2nd Edit

I'm trying

SELECT MIN([Date]) AS RecT, AVG(Value)
  FROM [FRIIB].[dbo].[ArchiveAnalog]
  GROUP BY (DATEPART(MINUTE, [Date]) / 10)
  ORDER BY RecT

changed %10 to / 10. is it possible to make Date output without milliseconds ?

share|improve this question

5 Answers

up vote 19 down vote accepted

finally done with

GROUP BY
DATEPART(YEAR, DT.[Date]),
DATEPART(MONTH, DT.[Date]),
DATEPART(DAY, DT.[Date]),
DATEPART(HOUR, DT.[Date]),
(DATEPART(MINUTE, DT.[Date]) / 10)
share|improve this answer

For a 10 minute interval, you would

GROUP BY (DATEPART(MINUTE, [Date]) % 10)

As was already mentioned by tzup and Pieter888... to do an hour interval, just

GROUP BY DATEPART(HOUR, [Date])
share|improve this answer
but here I group minutes of 1980 year with minutes of 2011 :S I need to care about it. – Heather Feb 22 '11 at 12:50

In T-SQL you can:

SELECT [Date]
  FROM [FRIIB].[dbo].[ArchiveAnalog]
  GROUP BY [Date], DATEPART(hh, [Date])

or

by minute use DATEPART(mi, [Date])

or

by 10 minutes use DATEPART(mi, [Date]) % 10 (like Timothy suggested)

share|improve this answer
GROUP BY [Date], DATEPART(hh, [Date]) is a mess , not ? – Heather Feb 15 '11 at 11:07
@nCdy Should be all right, otherwise you get an error "...invalid in the select list because it is not contained in either an aggregate function or the GROUP BY clause" – tzup Feb 15 '11 at 11:23
but pff how the hell you want it to group by whole date and by hours in the same time ? I'm just using Min Date . – Heather Feb 15 '11 at 12:18
if you use Min(Date) then of course you can take out the Date in the Group By. – tzup Feb 15 '11 at 12:22

Should be something like

select timeslot, count(*)  
from 
    (
    select datepart('hh', date) timeslot
    FROM [FRIIB].[dbo].[ArchiveAnalog]  
    ) 
group by timeslot

(Not 100% sure about the syntax - I'm more an Oracle kind of guy)

In Oracle:

SELECT timeslot, COUNT(*) 
FROM
(  
    SELECT to_char(l_time, 'YYYY-MM-DD hh24') timeslot 
    FROM
    (
        SELECT l_time FROM mytab  
    )  
) GROUP BY timeslot 

HTH & kind regards Frank

share|improve this answer

This is easy

GROUP BY HOUR(yourDateField)
share|improve this answer
I see the comment above got deleted, I'll just leave this here. If you want to group your selection by minute, use this: GROUP BY MINUTE(yourDateField) – Pieter888 Feb 15 '11 at 10:51
2  
doesn't work on mssql :( – Heather Feb 15 '11 at 10:52
My bad, didn't read correctly what kind of database you where using. It should work in MySQL – Pieter888 Feb 15 '11 at 10:54
yes, it does work in MYSQL – Cam Song Aug 30 '12 at 5:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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