I have items in a group.
Each item has a time stamp.
I'm looking for gaps of two seconds or more.
I can order them by GroupId and ItemId and manually search for gaps.
The gap for ItemA is defined as ItemB.Created - ItemA.Created.
How do I query to find the length of the gap for each item?
The gap for the last item is obviously undefined.
Each item has a time stamp.
I'm looking for gaps of two seconds or more.
I can order them by GroupId and ItemId and manually search for gaps.
The gap for ItemA is defined as ItemB.Created - ItemA.Created.
How do I query to find the length of the gap for each item?
The gap for the last item is obviously undefined.
Comment