Skip to content
Advertisement

SQL – Time difference between rows, conditional

I have a database for logging peeing/pooing time for a puppy. Each row contains a timestamp datetime, and bools pee and poo.

I’m trying to add a column for the time since last pee/poo. The verbose version of this column would be:

subtract this row’s datetime

from datetime of the row

with the highest datetime that is lower than this row’s datetime

and that has a poo value of 1

The basic query is:

I tried using LAG but it is conditional on finding the last row that had an applicable bool value. For example, if these are the results from a query:

query result example

…then LAG would not work for poo_diff as the difference should be from the row that most recently had a poo of 1.

How can I add this column?

Advertisement

Answer

You should be able to get the values you want using rolling variables:

in this case, @last_poo and @last_pee store the last datetime for their respective event, while iterating on the selected rows.

Note that this won’t work if you ORDER BY ... DESC, and I also had to swap some columns around, in order to have somewhere to update the variables after the difference is computed.

Finally, i’m using SEC_TO_TIME(... TIMESTAMPDIFF(...)) because otherwise it seemed to produce some weird values such as 03:00:00.00000

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