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?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
|||||||||
|
|
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. |
||||
|
Try this , grouping of records of 15 minutes interval, you can change 15*60 to the interval in seconds you need
|
|||
|
|
This worked for me
|
||||
|
|
