Re: Subqueries in select clause - Mailing list pgsql-sql

From Tom Lane
Subject Re: Subqueries in select clause
Date
Msg-id 12360.987618794@sss.pgh.pa.us
Whole thread Raw
In response to Re: Subqueries in select clause  ("Josh Berkus" <josh@agliodbs.com>)
List pgsql-sql
"Josh Berkus" <josh@agliodbs.com> writes:
> Until you can upgrade, though, try this approach:

> CREATE VIEW c_aggregate AS
> SELECT sum(a) as sum_a, b FROM c GROUP BY b;

> SELECT max(sum_a) FROM c_aggregate;

Unfortunately that won't work in 7.0 --- grouped views have a lot of
problems in that version, and one of the problems is that you can't
do another level of aggregating on their results.

Basically a view and a subselect are the same thing, so you can't get
around the restrictions of one by using the other...

7.1 is what Sara needs.
        regards, tom lane


pgsql-sql by date:

Previous
From: Mathijs Brands
Date:
Subject: Re: maybe Offtopic : PostgreSQL & PHP ?
Next
From: Stef Telford
Date:
Subject: breakage in schema with foreign keys between 7.0.3 and 7.1