Skip to content
Advertisement

how to group the data by some interval datetimes?

there are many devices and while using it will upload data every some seconds or minutes. I want to get the sections of date-time that the device is in use

can it be true that group the data by an interval? let us consider interval = 1 minutes then group the data which the minus of the two date-time is more than 1 minutes. then Id=0 or Id=1 or Id=2 or Id=3 is one group and Id=4 and Id=5 and Id=6 and Id=7 and Id=8 is another group

what I want is the group is a nearly date-time.

If the difference between two records is more than 1 minute then they are in two groups. If not they are in the same groups.

which means in the same group time1 will be smaller than 1 minutes to one of the other time.

If the time difference is 1 or 10 minutes larger than the previous record it will belong to a new groups

and I am using MYSQL

Advertisement

Answer

  • You can use lag window function to obtain previous date_time.
  • One way to calculate the time difference in seconds is to convert timestamp type to integer by unix_timestamp function.
  • Make a newgroup flag which equals one if and only if the difference from the previous record is larger than 60*10 seconds (10 minutes).
  • Cumulative sum of newgroup would become the section group ID.

This query would get:

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement