Skip to content
Advertisement

Finding Gaps in Timestamps for Multiple Users in PostgreSQL

I am working with a dataset containing Check-In and Check-Out times for multiple office rooms over the last 5 years. One of the projects I was asked to work on was calculating the amount of time each room is busy and vacant over various time ranges (daily, weekly, monthly, etc.) assuming normal operational hours (8am to 5pm). A sample of the dataset for two days looks like this:

I borrowed and modified some code written in a previous StackOverflow post by @Branko Dimitrijevic (full post: SQL Query to show gaps between multiple date ranges) to try and handle multiple different rooms. Below is my modified code with two instances of room_id in the SELECT clause for debugging purposes:

And this is the output I am receiving:

However, this is becoming confused between different rooms and I don’t know how to implement workday constraints, such as finding time gaps between 8am and the first scheduled event. Below is an optimal output, or at least a data format that would be usable to calculate the statistics I would need with some simple GROUP BY scripts:

Any help on this would be greatly appreciated and happy to provide additional information if it helps!

Advertisement

Answer

One of the projects I was asked to work on was calculating the amount of time each room is busy and vacant over various time ranges (daily, weekly, monthly, etc.) assuming normal operational hours (8am to 5pm).

Based on your sample data, two assumptions seem reasonable:

  • The “busy” periods don’t overlap.
  • “Busy” periods are all within one day.

If these are not true, I would suggest that you ask a NEW question with appropriate explanation and sample data.

The calculation is then pretty simple for a given day:

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