Re: SQL subquery to supply table name? - Mailing list pgsql-general

From Stephan Szabo
Subject Re: SQL subquery to supply table name?
Date
Msg-id 20020926225300.X34750-100000@megazone23.bigpanda.com
Whole thread Raw
In response to Re: SQL subquery to supply table name?  (Scott Chapman <scott_list@mischko.com>)
List pgsql-general
On Thu, 26 Sep 2002, Scott Chapman wrote:

> I was lead to believe that Postgresql would handle this from reading the docs.
> This error message from psql made me think it would also:
>
> select txtcompanyname from (select table_quest from reviews where
> review_num=28) where review_num=28;
>
> ERROR:  sub-SELECT in FROM must have an alias
>         For example, FROM (SELECT ...) [AS] foo
>
> What is the "sub-SELECT in FROM" supposed to be used for if not this usage?

It's effectively as if you defined a view with that as the definition and
used it.  It mostly exists to allow multiple levels of processing (for
example, you want to do a query that does something to a set of grouped
data).


pgsql-general by date:

Previous
From: Unixprgrmr@aol.com
Date:
Subject: (no subject)
Next
From: Andriy Tkachuk
Date:
Subject: query speed depends on lifetime of frozen db?