Table names in upper case

Поиск
Список
Период
Сортировка
От tosites@me.com
Тема Table names in upper case
Дата
Msg-id 20161012181233.1397.66615@wrigleys.postgresql.org
обсуждение исходный текст
Ответы Re: Table names in upper case  (Pantelis Theodosiou <ypercube@gmail.com>)
Список pgsql-docs
The following documentation comment has been logged on the website:

Page: https://www.postgresql.org/docs/9.6/static/sql-syntax-lexical.html
Description:

Although this documentation says that "Key words and unquoted identifiers
are case insensitive." it is not possible to use table or column names in
upper case.

If the table or column name was in upper case it is necessary use quotes to
Postgres accept. Exactly the opposite case showed at documentation.

For example:

CREATE TABLE CLIENT(ID INTEGER, NAME TEXT);

SELECT * FROM CLIENT;   -- an error will be launched

SELECT * FROM "CLIENT";   -- works

But:

CREATE TABLE client(id INTEGER, name TEXT);

SELECT * FROM CLIENT;   -- works

It is, at least, strange.

Cheers.



В списке pgsql-docs по дате отправления:

Предыдущее
От: Alex Lydiate
Дата:
Сообщение: Fwd: SQL Null
Следующее
От: rauldmiller@gmail.com
Дата:
Сообщение: date ambiguity in view documentation