Вся предоставленная на этом сервере информация собрана нами из разных источников. Если Вам кажется, что публикация каких-то документов нарушает чьи-либо авторские права, сообщите нам об этом.
Names in SQL must begin with a letter
(a-z) or underscore
(_).
Subsequent characters in a name can be letters, digits
(0-9),
or underscores. The system uses no more than NAMEDATALEN-1 characters
of a name; longer names can be written in queries, but they will be
truncated.
By default, NAMEDATALEN is 32 so the maximum name length is 31 (but
at the time the system is built, NAMEDATALEN can be changed in
src/include/postgres_ext.h).
Names containing other characters may be formed by surrounding them
with double quotes ("). For example, table or column
names may contain
otherwise disallowed characters such as spaces, ampersands, etc. if
quoted. Quoting a name also makes it case-sensitive,
whereas unquoted names are always folded to lower case. For example,
the names FOO, foo
and "foo" are
considered the same by Postgres, but
"Foo" is a different name.
Double quotes can also be used to protect a name that would otherwise
be taken to be an SQL keyword. For example, IN
is a keyword but "IN" is a name.