Обсуждение: i think there's a typo

Поиск
Список
Период
Сортировка

i think there's a typo

От
PG Doc comments form
Дата:
The following documentation comment has been logged on the website:

Page: https://www.postgresql.org/docs/8.0/static/user-manag.html
Description:

SELECT usename FROM pg_user;

should be
SELECT pg_user.usename FROM pg_user;

Re: i think there's a typo

От
Michael Paquier
Дата:
On Thu, Feb 15, 2018 at 11:06:27PM +0000, PG Doc comments form wrote:
> SELECT usename FROM pg_user;
>
> should be
> SELECT pg_user.usename FROM pg_user;

This is perfectly valid SQL.  The column selected is assumed to be from
pg_user.
--
Michael

Вложения