I have a time series table with values every 5 minute, with the following table structure:
DATETIME VALUE
2000-01-01 00:00:00 4
2000-01-01 00:05:00 33
2000-01-01 00:10:00 8
2000-01-01 00:15:00 9
2000-01-01 00:25:00 13
2000-01-01 00:30:00 98
2000-01-01 00:35:00 23
2000-01-01 00:40:00 22
I want to identify all the places where there is a gap in the time series (i.e.: Line 5 in this example, there is no value for 2000-01-01 00:20:00).
Any help is greatly appreciated!