Meine erste Neigung ist, diese Tabelle zu erstellen:
+---------+-------+--------+
| Country | Month | Amount |
+---------+-------+--------+
| UK | Jan | 4 |
+---------+-------+--------+
| UK | Feb | 12 |
+---------+-------+--------+
usw. und schwenken. Sie würden also mit (zum Beispiel) beginnen:
SELECT
c.country,
EXTRACT(MONTH FROM s.eldate) AS month,
COUNT(*) AS amount
FROM country AS c
JOIN site AS s ON s.country_id = c.id
WHERE
s.eldate > NOW() - INTERVAL '1 year'
GROUP BY c.country, EXTRACT(MONTH FROM s.eldate);
Sie könnten das dann in eine der crosstab
einfügen Funktionen aus der tablefunc
Modul
Um den Pivot zu erreichen, tun Sie etwas wie folgt:
SELECT *
FROM crosstab('<query from above goes here>')
AS ct(country varchar, january integer, february integer, ... december integer);