Re: doc question about column name alias - Mailing list pgsql-docs

From Bruce Momjian
Subject Re: doc question about column name alias
Date
Msg-id 200106251506.f5PF6J905523@candle.pha.pa.us
Whole thread Raw
In response to doc question about column name alias  (Weiping He <laser@zhengmai.com.cn>)
List pgsql-docs
> Hi,
>     I'm translating 7.1.2's doc to Chinese, and got one question while
> doing these,
> in queries.sgml line 795:
>
> SELECT a AS b FROM table1 ORDER BY a;
>
> I think it should be:
>
> SELECT a AS b FROM table1 ORDER BY b;
>
> but from the context:"   References to column names in the FROM clause
> that are renamed in the select list are also allowed:"
> it seems the original is correct. Am I misunderstood? How the SQL
> standard saids?
> Thanks.

Both work:

    test=> select relname as x from pg_class order by relname;

and

    test=> select relname as x from pg_class order by x;

I am not sure which is more standards-compliant.

--
  Bruce Momjian                        |  http://candle.pha.pa.us
  pgman@candle.pha.pa.us               |  (610) 853-3000
  +  If your life is a hard drive,     |  830 Blythe Avenue
  +  Christ can be your backup.        |  Drexel Hill, Pennsylvania 19026

pgsql-docs by date:

Previous
From: Tom Lane
Date:
Subject: Re: doc question about column name alias
Next
From: Tom Ivar Helbekkmo
Date:
Subject: Re: doc question about column name alias