I am trying to rollup in postgresql 8.0. In latest version on postgresql we have ROLLUP function, but how to implement rollup in postgresql 8.0 ? Anyone have experience with the same?
I tried the below
SELECT
EXTRACT (YEAR FROM rental_date) y,
EXTRACT (MONTH FROM rental_date) M,
EXTRACT (DAY FROM rental_date) d,
COUNT (rental_id)
FROM
rental
GROUP BY
ROLLUP (
EXTRACT (YEAR FROM rental_date),
EXTRACT (MONTH FROM rental_date),
EXTRACT (DAY FROM rental_date)
);
But getting the following error:
42883: function rollup( integer, integer, integer) does not exist
followed from http://www.postgresqltutorial.com/postgresql-rollup/
As
GROUP BY ROLLUP
was introduced with version 9.5, the query has no chance to work. But if you think about what it does it should be very easy in your case to come up with a version producing the same result.Basically, you want to have:
I've written the above in a special way, so that it becomes clear what you actually need:
UNION ALL
of the above in the order you wantAs the default for
GROUP BY ROLLUP
is to write-out the total first and then the individual grouping sets withNULLS LAST
, the following query will do the same:The above works with PostgreSQL 8.4+. If you don't even have that version, we must fall back to the old-school
UNION
without re-using aggregation data: