Need to find record having gap between months in a table if the data is present in two different year. I have column like id, value,month, year.
Id, value, month,year
1, 123, oct, 2020
1, 128, nov, 2020
1, 127, jan ,2021
2, 121, Dec, 2020
2, 154, jan, 2021
Output I need: Id 1 as there is a gap in month (Dec is Missing for id=1)
I would construct a date and use
lag()
:Here is a db<>fiddle.