Given this schema (in postgresql-9.2):
CREATE TABLE foo (
id serial PRIMARY KEY,
...other columns elided...
);
CREATE TYPE event_type AS ENUM ('start', 'stop');
CREATE TABLE foo_event (
id serial PRIMARY KEY,
foo_id integer NOT NULL REFERENCES foo (id),
timestamp timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
type event_type NOT NULL
);
How can I get all "running" foos? That is, foos whose most recent event is a 'start', or, even better, foos who were started at least once, and have no stops after their last start (in case I add more event types in the future).
My best attempt so far is:
SELECT * FROM foo
WHERE id NOT IN
(SELECT foo_id FROM foo_event
WHERE type='stop');
The problem here is, of course, that it'll never return any foos that have ever been stopped.
startevents without correspondingstopevents? If not, something along these lines:GROUP BY foo_id HAVING SUM(CASE event_type = 'start' THEN 1 ELSE 0 END) > SUM(CASE event_type = 'stop' THEN 1 ELSE 0 END– Glenn Feb 20 at 3:11