I have the following table:
CREATE TABLE mytmp (
Adv integer,
Pub integer,
Web integer,
Tiempo timestamp,
Num integer,
Country varchar(2)
);
CREATE INDEX idx_mytmp ON mytmp(adv, pub, web);
And with 16M rows this query:
SELECT adv, pub, web, country, date_trunc('hour', tiempo), sum(num)
FROM mytmp GROUP BY adv, pub, web, country, date_trunc('hour', tiempo)
I've tried to create index in different columns but it seems that the group
by clause doesn't use the index in any way.
Is around there any stuff to accelerate the group by kind of clauses?
Thanks a lot.