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

From Joe Conway
Subject Re: SQL subquery to supply table name?
Date
Msg-id 3D93DB9C.8090102@joeconway.com
Whole thread Raw
In response to SQL subquery to supply table name?  (Scott Chapman <scott_list@mischko.com>)
List pgsql-general
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?
>

Read the error message again -- you just need an alias for the sub-select, e.g.:

select
   t.table_quest
from
   (select table_quest from reviews where review_num=28) AS t;
                                                        ^^^^^
                                                        ^^^^^

HTH,

Joe


pgsql-general by date:

Previous
From: Tom Lane
Date:
Subject: Re: get date in binary number format
Next
From: Alvaro Herrera
Date:
Subject: Re: get date in binary number format