problem - group by - Mailing list pgsql-novice

From Dusan PESL
Subject problem - group by
Date
Msg-id 72.444-1127-73735402-1178958377@seznam.cz
Whole thread Raw
Responses Re: problem - group by
List pgsql-novice
Hello,

in SQLite this query is posible:

SELECT acount/1000, SUM(values)  FROM acounts
GROUP BY acount/1000

this very simple and elegant way to get groups of common acounts, Unfortunately Postgres doesn't alow "GROUP BY
acount/1000"- only "GROUP BY acount", which is not the same. 

I know, there are several ways, how to solve this problem, but the metod "GROUP BY acount/1000" seems to be the most
elegant.Can anyone help me? 

Thanks Dusan

pgsql-novice by date:

Previous
From: coder@montx.com
Date:
Subject: Re: [NOVICE] aggregate function ?
Next
From: Dusan PESL
Date:
Subject: problem - group by