|
|
|
|
|
by aba_sababa
4591 days ago
|
|
How about having a table where each row corresponds to a duration of time? time | total | mice_ids (a json string. or use mongo) And then, run through all your data and assign each mouse to a certain duration (ie, minute one, minute two, etc), updating the total counts every time as well as the mice_ids. Then, you could query by minute and see which minutes had meetings in them (ie, select mice where total > 2) |
|