(PostgreSQL 8.4) I got a great introduction to SQL gaps-and-islands here on Stack Overflow but I still have a question. Many island detection CTEs are based on a running order of a timestamp and some flag which breaks the sequence when it changes. But what if the "break" condition is a little more complex?
CREATE TABLE T1
(
id SERIAL PRIMARY KEY,
val INT, -- some device
status INT -- 0=OFF, 1=ON
);
INSERT INTO T1 (val, status) VALUES (10, 1);
INSERT INTO T1 (val, status) VALUES (10, 0);
INSERT INTO T1 (val, status) VALUES (11, 1);
INSERT INTO T1 (val, status) VALUES (11, 1);
INSERT INTO T1 (val, status) VALUES (10, 0);
INSERT INTO T1 (val, status) VALUES (12, 1);
INSERT INTO T1 (val, status) VALUES (13, 1);
INSERT INTO T1 (val, status) VALUES (13, 0);
INSERT INTO T1 (val, status) VALUES (13, 1);
In this case, val represents a device, and status is either ON or OFF. I want to select records 1, 3, 6, 7 and 9 with the following logic.
- #10 turns ON — OK, new sequence, include in SELECT
- #10 turns OFF — ends sequence properly, ignore row
- #11 turns ON — OK, new sequence, include in SELECT
- #11 turns ON — duplicate, ignore row
- #10 turns OFF — #10 wasn’t ON, ignore
- #12 turns ON — OK, implicitly turns OFF #11, include in SELECT
- #13 turns ON — OK, implicitly turns OFF #12, include in SELECT
- #13 turns OFF — ends sequence properly, ignore row
- #13 turns ON — OK, new sequence, include in SELECT
Basically, only one device can be ON at a time, and the "break" condition is that:
- new.val = running.val AND new.status = 0
- new.val <> running.val AND new.status = 1
I’m looking for something in the form of a CTE, no cursors please.
Answer for updated question
How?
Same as before, but this time combine two window functions. Switching on a device qualifies if ..
1. the last device switched on was a different one.
2. or the same device has been switched off in its last entry. The corner case with
NULLfor the first row of the partition is irrelevant, because then the row already qualified in 1.Answer for original version of question.
If your I understand your task correctly, this simple query does the job:
Returns rows 1, 3, 6, 7 as requested.
How?
The subquery ignores all switching off, as that is just noise, according to your description. Leaves entries where a device is switched on. Among those, only those entries are disqualified, where the same device was on already (the last entry switching on). Use the window function
lag()for that. In particular I provide0as default to cover the special case of the first row – assuming that there is no device withval = 0.If there is, pick another impossible number.
If no number is impossible, leave the special case as
NULLwithlag(val) OVER ...and in the outer query check with: