Only minutes with activity
Won't get much simpler than this:
SELECT DISTINCT
date_trunc('minute', "when") AS minute_slice
,count(*) OVER (ORDER BY date_trunc('minute', "when")) AS running_ct
FROM mytable
ORDER BY 1;
Use date_trunc(). It gives you exactly what you need.
Don't include id in the query, since you want to GROUP BY minute slices.
count() is mostly used as plain aggregate function. Appending an OVER clause makes it a window function. Omit PARTITION BY in the window definition - you want a running count over all rows. By default, that counts from the first row to the last peer of the current row as defined by ORDER BY. I quote the manual:
The default framing option is RANGE UNBOUNDED PRECEDING, which is the
same as RANGE BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW; it sets the
frame to be all rows from the partition start up through the current
row's last peer in the ORDER BY ordering.
And that happens to be exactly what you need.
Use count(*) rather than count(id). It fits your question better ("count of rows"). It is generally slightly faster than count(id). And, while we might assume that id is NOT NULL, it has not been specified in the question, so count(id) is wrong, strictly speaking.
You can't GROUP BY minute slices at the same query level. Aggregate functions are applied before window functions, the window function count(*) would only see 1 row per minute this way.
You can, however, SELECT DISTINCT, because DISTINCT is applied after window functions.
ORDER BY 1 is just shorthand for ORDER BY date_trunc('minute', "when") here.
1 serves as positional parameter referencing the 1st expression in the SELECT clause.
Use to_char() if you need to beautify the result. Like this:
SELECT DISTINCT
to_char(date_trunc('minute', "when")
,'DD.MM.YYYY HH24:MI') AS minute_slice
,count(*) OVER (ORDER BY date_trunc('minute', "when")) AS running_ct
FROM mytable
ORDER BY 1;
Include minutes without activity
Updated 2013-04-21: Faster, yet: combine generate_series() with aggregate functions in one subquery.
@GabiMe asked in a comment how to get one row for every minute_slice in the time frame, including those where no event occurs (no row in base table):
WITH x AS (SELECT date_trunc('minute', "when") AS min_slice FROM mytable)
SELECT DISTINCT
m.min_slice, count(x.min_slice) OVER (ORDER BY m.min_slice) AS running_ct
FROM (SELECT generate_series(min(min_slice)
,max(min_slice), '1m') AS min_slice FROM x) m
LEFT JOIN x USING (min_slice)
ORDER BY 1;
Generate a row for every minute in the time frame between the first and the last event with generate_series().
LEFT JOIN to all timestamps truncated to the minute and count. NULL values (where no row exists) do not add to the running count.
This is the fastest among a couple of variants I tested with Postgres 9.1 and 9.2.