Mam nadzieję, że ten przykład pomoże. Potrzebujesz funkcji, która pobiera (akumulator, argumenty agregujące) i zwraca nową wartość akumulatora. Pobaw się poniższym kodem, a to powinno dać ci wyczucie, jak to wszystko do siebie pasuje.
BEGIN;
CREATE FUNCTION sum_product_fn(int,int,int) RETURNS int AS $$
SELECT $1 + ($2 * $3);
$$ LANGUAGE SQL;
CREATE AGGREGATE sum_product(int, int) (
sfunc = sum_product_fn,
stype = int,
initcond = 0
);
SELECT
sum(i) AS one,
sum_product(i, 2) AS double,
sum_product(i,3) AS triple
FROM generate_series(1,3) i;
ROLLBACK;
To powinno dać ci coś takiego:
one | double | triple
-----+--------+--------
6 | 12 | 18