Skip to content
Advertisement

Get totals from difference between rows

I have a table, with the following structure:

Example data:

When a user on my application goes online, a new row is inserted with status ONLINE. When they go offline, a row with status OFFLINE is inserted. There are other entries created to record different events, but for this query only OFFLINE and ONLINE are important.

I want to produce a chart, showing the total number of users online over a time period (e.g 5 minutes), within a date range. If a user is online for any part of that period they should be counted.

Example:

I’m able to produce a similar chart for an individual user by fetching all status rows within the date range then processing manually, however this approach won’t scale to all users.

I believe something like this could be accomplished with window functions, but I’m not really sure where to start

Advertisement

Answer

As your question is very vague nobody realy can help you to 100%. Well, you can achive what you want maybe with a combination of of “with” clauses and window functions. With the “with” clause you can easily break down big problems in small parts. Maybe following query (not looking at any performace) may help, you replace public.tbl_test with your table:

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