Skip to content
Advertisement

Add a counter based consecutive dates

I have an employee table with employee name and the dates when the employee was on leave. My task is to identify employees who have takes 3 or 5 consecutive days of leave. I tried to add a row_number but it wouldn’t restart correct based on the consecutive dates. The desired counter I am after is shown below. Any suggestions please?

Desired output (same as in text)

Advertisement

Answer

This is a gaps and island problem: islands represents consecutive days of leaves, and you want to enumerate the rows of each island.

Here is an approach that uses the date difference against a monotonically increasing counter to build the groups:

Demo on DB Fiddle

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