Re: doc question about column name alias

Поиск
Список
Период
Сортировка
От Bruce Momjian
Тема Re: doc question about column name alias
Дата
Msg-id 200106251506.f5PF6J905523@candle.pha.pa.us
обсуждение исходный текст
Ответ на doc question about column name alias  (Weiping He <laser@zhengmai.com.cn>)
Список 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 по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: doc question about column name alias
Следующее
От: Tom Ivar Helbekkmo
Дата:
Сообщение: Re: doc question about column name alias