I've got a monitoring system that is collecting data every n seconds (n ~=10 but varies). I'd like to aggregate the collected data by 15 minute intervals. Is there a way to corral the timestamp column into 15 minute chunks to allow for grouping to work?
|
feedback
|
| |||||||||
feedback
|
|
Adaptation of approach 1) below:
Adaptation of approach 3) below:
A few approaches I've found here: 1)
2)
3)
(Also here: http://www.bradino.com/mysql/dayparting-on-datetime-field-using-substring/) EDIT: All the solutions will perform badly on a table with a large number of records. | |||||
|
feedback
|
|
Try this , grouping of records of 15 minutes interval, you can change 15*60 to the interval in seconds you need
| |||
|
feedback
|