Jest to teraz możliwe w wersji 9.5 Postgresa :
Schemat PostgreSQL 9.5
CREATE TABLE basket(fruits text, a integer, b integer, c integer);
CREATE TABLE
INSERT INTO basket(fruits, a, b, c) values('apples', 1, 1, 1),
('apples', 0, 1, 2),
('bananas', 1, 1, 2),
('oranges', 1, 1, 1);
Zapytanie
SELECT coalesce(fruits,'total'), sum(a) a, sum(b) b, sum(c) c
FROM basket
GROUP BY ROLLUP((fruits))
Wyniki
fruits | a | b | c
---------+---+---+---
apples | 1 | 2 | 3
bananas | 1 | 1 | 2
oranges | 1 | 1 | 1
total | 3 | 4 | 6
Ten ROLLUP
jest równoważne użyciu wyrażeń z GROUPING SETS
:
SELECT fruits, sum(a) a, sum(b) b, sum(c) c
FROM basket
GROUP BY GROUPING SETS (fruits, ())
Każda podlista w GROUPING SETS
jest interpretowany w taki sam sposób, jak gdyby był bezpośrednio w klauzuli GROUP BY.