| Документация по PostgreSQL 9.4.1 | |||
|---|---|---|---|
| Пред. | Уровень выше | Глава 34. Информационная схема | След. |
34.16. columns
Представление columns содержит информацию обо всех колонках таблиц (или колонках представлений) в базе данных. Системные колонки (oid и т. д.) в нём не показываются. Оно содержит только те колонки, к которым имеет доступ текущий пользователь (являясь владельцем или имея некоторые права).
Таблица 34-14. Колонки columns
| Имя | Тип данных | Описание |
|---|---|---|
| table_catalog | sql_identifier | Имя базы данных, содержащей таблицу (всегда текущая база) |
| table_schema | sql_identifier | Имя схемы, содержащей таблицу |
| table_name | sql_identifier | Имя таблицы |
| column_name | sql_identifier | Имя колонки |
| ordinal_position | cardinal_number | Порядковый номер колонки в таблице (нумерация начинается с 1) |
| column_default | character_data | Выражение по умолчанию для колонки |
| is_nullable | yes_or_no | YES, если колонка может содержать NULL, или NO, если она не принимает NULL. Не будет принимать NULL колонка с ограничением не-NULL, но возможны и другие варианты. |
| data_type | character_data | Тип данных колонки, если это встроенный тип, либо ARRAY, если это массив (в этом случае обратитесь к представлению element_types), иначе — USER-DEFINED (в этом случае тип определяется в udt_name и связанных колонках). Если колонка основана на домене, данная колонка показывает нижележащий тип домена (а сам домен показывается в domain_name и связанных колонках). |
| character_maximum_length | cardinal_number | Если в data_type указан тип текстовой или битовой строки, это поле задаёт её объявленную максимальную длину; NULL для всех других типов данных, либо если максимальная длина не объявлена. |
| character_octet_length | cardinal_number | Если в data_type указан тип символьной строки, это поле задаёт её максимально возможный размер в октетах (байтах); NULL для всех других типов данных. Максимальный размер в октетах зависит от объявленной максимальной длины в символах (см. выше) и от кодировки сервера. |
| numeric_precision | cardinal_number | Если в data_type указан числовой тип, эта колонка содержит точность (объявленную или неявную) типа для целевой колонки. Точность определяет число значащих цифр. Она может выражаться в десятичных (по основанию 10) или двоичных (по основанию 2) цифрах, согласно колонке numeric_precision_radix. Для всех других типов данных эта колонка содержит NULL. |
| numeric_precision_radix | cardinal_number | Если в data_type указан числовой тип, в этой колонке определяется, по какому основанию задаются значения в колонках numeric_precision и numeric_scale. Возможные варианты: 2 или 10. Для всех других типов данных эта колонка содержит NULL. |
| numeric_scale | cardinal_number | Если в data_type указан точный числовой тип, эта колонка содержит масштаб (объявленный или неявный) типа для целевой колонки. Масштаб определяет число значащих цифр справа от десятичной точки. Он может выражаться в десятичных (по основанию 10) или двоичных (по основанию 2) цифрах, согласно колонке numeric_precision_radix. Для всех других типов данных эта колонка содержит NULL. |
| datetime_precision | cardinal_number | Если в data_type указан тип даты, времени, отметки времени или интервала, эта колонка содержит точность (объявленную или неявную) в долях секунды типа для целевой колонки, то есть число десятичных цифр, сохраняемых после десятичной точки в значении секунд. Для всех других типов данных эта колонка содержит NULL. |
| interval_type | character_data | Если в data_type указан тип интервала, эта колонка определяет, какие поля принимает интервал в целевой колонке, например: YEAR TO MONTH, DAY TO SECOND и т. д. Если ограничения для полей не заданы (то есть, интервал принимает все поля), и для любых других типов данных это поле содержит NULL. |
| interval_precision | cardinal_number | Относится к функциональности, отсутствующей в PostgreSQL (см. поле datetime_precision, определяющее точность в долях секунды для типов интервалов) |
| character_set_catalog | sql_identifier | Относится к функциональности, отсутствующей в PostgreSQL |
| character_set_schema | sql_identifier | Относится к функциональности, отсутствующей в PostgreSQL |
| character_set_name | sql_identifier | Относится к функциональности, отсутствующей в PostgreSQL |
| collation_catalog | sql_identifier | Имя базы данных, содержащей правило сортировки колонки (это всегда текущая база), либо NULL, если это правило по умолчанию или тип данных колонки несортируемый |
| collation_schema | sql_identifier | Имя схемы, содержащей правило сортировки колонки, либо NULL, если это правило по умолчанию или тип данных колонки несортируемый |
| collation_name | sql_identifier | Имя правила сортировки колонки, либо NULL, если это правило по умолчанию или тип данных колонки несортируемый |
| domain_catalog | sql_identifier | Если целевая колонка имеет тип домена, эта колонка содержит имя базы данных, в которой определён домен (всегда текущая база), иначе NULL. |
| domain_schema | sql_identifier | Если целевая колонка имеет тип домена, эта колонка содержит имя схемы, в которой определён домен, иначе NULL. |
| domain_name | sql_identifier | Если целевая колонка имеет тип домена, эта колонка содержит имя домена, иначе NULL. |
| udt_catalog | sql_identifier | Имя базы данных, в которой определён тип (если применимо, нижележащий тип домена) колонки (всегда текущая база) |
| udt_schema | sql_identifier | Имя схемы, в которой определён тип (если применимо, нижележащий тип домена) колонки (всегда текущая база) |
| udt_name | sql_identifier | Имя типа данных колонки (если применимо, нижележащий тип домена) |
| scope_catalog | sql_identifier | Относится к функциональности, отсутствующей в PostgreSQL |
| scope_schema | sql_identifier | Относится к функциональности, отсутствующей в PostgreSQL |
| scope_name | sql_identifier | Относится к функциональности, отсутствующей в PostgreSQL |
| maximum_cardinality | cardinal_number | Всегда NULL, так как массивы имеют неограниченную максимальную ёмкость в PostgreSQL |
| dtd_identifier | sql_identifier | Идентификатор дескриптора типа данных колонки, уникальный среди всех дескрипторов типов, относящихся к таблице. Он в основном полезен для соединения с другими экземплярами таких идентификаторов. (Конкретный формат идентификатора не определён и не гарантируется, что он останется неизменным в будущих версиях.) |
| is_self_referencing | yes_or_no | Относится к функциональности, отсутствующей в PostgreSQL |
| is_identity | yes_or_no | Относится к функциональности, отсутствующей в PostgreSQL |
| identity_generation | character_data | Относится к функциональности, отсутствующей в PostgreSQL |
| identity_start | character_data | Относится к функциональности, отсутствующей в PostgreSQL |
| identity_increment | character_data | Относится к функциональности, отсутствующей в PostgreSQL |
| identity_maximum | character_data | Относится к функциональности, отсутствующей в PostgreSQL |
| identity_minimum | character_data | Относится к функциональности, отсутствующей в PostgreSQL |
| identity_cycle | yes_or_no | Относится к функциональности, отсутствующей в PostgreSQL |
| is_generated | character_data | Относится к функциональности, отсутствующей в PostgreSQL |
| generation_expression | character_data | Относится к функциональности, отсутствующей в PostgreSQL |
| is_updatable | yes_or_no | YES, если колонка допускает изменение, или NO в противном случае (колонки в базовых таблицах всегда изменяемые, но в представлениях — не обязательно) |
Так как типы данных могут определяться в SQL множеством способом и PostgreSQL добавляет дополнительные варианты, представление типов в информационной схеме может быть довольно сложным. Колонка data_type предназначена для идентификации нижележащего встроенного типа колонки. В PostgreSQL это означает, что данный тип определён в схеме системного каталога pg_catalog. Эта колонка может быть полезной, если приложение способно особым образом воспринимать встроенные типы (например, форматировать числовые типы по-другому или задействовать данные в колонках точности). Колонки udt_name, udt_schema и udt_catalog всегда указывают на нижележащий тип данных колонки, даже если колонка основана на домене. (Так как в PostgreSQL встроенные типы не отличаются от определённых пользователем, в этом представлении выводятся и они. Это расширение стандарта SQL.) Эти колонки должны учитываться, когда приложению нужно обрабатывать данные в зависимости от типа, так как в этом случае не важно, основана ли колонка на домене. Если колонка основана на домене, на него указывают колонки domain_name, domain_schema и domain_catalog. Если вы хотите связать колонки с их типами данных и обработать домены как отдельные типы, вы можете записать coalesce(domain_name, udt_name) и т. п.
| Пред. | Начало | След. |
| column_udt_usage | Уровень выше | constraint_column_usage |
| PostgreSQL 9.4.1 Documentation | |||
|---|---|---|---|
| Prev | Up | Chapter 34. The Information Schema | Next |
34.16. columns
The view columns contains information about all table columns (or view columns) in the database. System columns (oid, etc.) are not included. Only those columns are shown that the current user has access to (by way of being the owner or having some privilege).
Table 34-14. columns Columns
| Name | Data Type | Description |
|---|---|---|
| table_catalog | sql_identifier | Name of the database containing the table (always the current database) |
| table_schema | sql_identifier | Name of the schema containing the table |
| table_name | sql_identifier | Name of the table |
| column_name | sql_identifier | Name of the column |
| ordinal_position | cardinal_number | Ordinal position of the column within the table (count starts at 1) |
| column_default | character_data | Default expression of the column |
| is_nullable | yes_or_no | YES if the column is possibly nullable, NO if it is known not nullable. A not-null constraint is one way a column can be known not nullable, but there can be others. |
| data_type | character_data | Data type of the column, if it is a built-in type, or ARRAY if it is some array (in that case, see the view element_types), else USER-DEFINED (in that case, the type is identified in udt_name and associated columns). If the column is based on a domain, this column refers to the type underlying the domain (and the domain is identified in domain_name and associated columns). |
| character_maximum_length | cardinal_number | If data_type identifies a character or bit string type, the declared maximum length; null for all other data types or if no maximum length was declared. |
| character_octet_length | cardinal_number | If data_type identifies a character type, the maximum possible length in octets (bytes) of a datum; null for all other data types. The maximum octet length depends on the declared character maximum length (see above) and the server encoding. |
| numeric_precision | cardinal_number | If data_type identifies a numeric type, this column contains the (declared or implicit) precision of the type for this column. The precision indicates the number of significant digits. It can be expressed in decimal (base 10) or binary (base 2) terms, as specified in the column numeric_precision_radix. For all other data types, this column is null. |
| numeric_precision_radix | cardinal_number | If data_type identifies a numeric type, this column indicates in which base the values in the columns numeric_precision and numeric_scale are expressed. The value is either 2 or 10. For all other data types, this column is null. |
| numeric_scale | cardinal_number | If data_type identifies an exact numeric type, this column contains the (declared or implicit) scale of the type for this column. The scale indicates the number of significant digits to the right of the decimal point. It can be expressed in decimal (base 10) or binary (base 2) terms, as specified in the column numeric_precision_radix. For all other data types, this column is null. |
| datetime_precision | cardinal_number | If data_type identifies a date, time, timestamp, or interval type, this column contains the (declared or implicit) fractional seconds precision of the type for this column, that is, the number of decimal digits maintained following the decimal point in the seconds value. For all other data types, this column is null. |
| interval_type | character_data | If data_type identifies an interval type, this column contains the specification which fields the intervals include for this column, e.g., YEAR TO MONTH, DAY TO SECOND, etc. If no field restrictions were specified (that is, the interval accepts all fields), and for all other data types, this field is null. |
| interval_precision | cardinal_number | Applies to a feature not available in PostgreSQL (see datetime_precision for the fractional seconds precision of interval type columns) |
| character_set_catalog | sql_identifier | Applies to a feature not available in PostgreSQL |
| character_set_schema | sql_identifier | Applies to a feature not available in PostgreSQL |
| character_set_name | sql_identifier | Applies to a feature not available in PostgreSQL |
| collation_catalog | sql_identifier | Name of the database containing the collation of the column (always the current database), null if default or the data type of the column is not collatable |
| collation_schema | sql_identifier | Name of the schema containing the collation of the column, null if default or the data type of the column is not collatable |
| collation_name | sql_identifier | Name of the collation of the column, null if default or the data type of the column is not collatable |
| domain_catalog | sql_identifier | If the column has a domain type, the name of the database that the domain is defined in (always the current database), else null. |
| domain_schema | sql_identifier | If the column has a domain type, the name of the schema that the domain is defined in, else null. |
| domain_name | sql_identifier | If the column has a domain type, the name of the domain, else null. |
| udt_catalog | sql_identifier | Name of the database that the column data type (the underlying type of the domain, if applicable) is defined in (always the current database) |
| udt_schema | sql_identifier | Name of the schema that the column data type (the underlying type of the domain, if applicable) is defined in |
| udt_name | sql_identifier | Name of the column data type (the underlying type of the domain, if applicable) |
| scope_catalog | sql_identifier | Applies to a feature not available in PostgreSQL |
| scope_schema | sql_identifier | Applies to a feature not available in PostgreSQL |
| scope_name | sql_identifier | Applies to a feature not available in PostgreSQL |
| maximum_cardinality | cardinal_number | Always null, because arrays always have unlimited maximum cardinality in PostgreSQL |
| dtd_identifier | sql_identifier | An identifier of the data type descriptor of the column, unique among the data type descriptors pertaining to the table. This is mainly useful for joining with other instances of such identifiers. (The specific format of the identifier is not defined and not guaranteed to remain the same in future versions.) |
| is_self_referencing | yes_or_no | Applies to a feature not available in PostgreSQL |
| is_identity | yes_or_no | Applies to a feature not available in PostgreSQL |
| identity_generation | character_data | Applies to a feature not available in PostgreSQL |
| identity_start | character_data | Applies to a feature not available in PostgreSQL |
| identity_increment | character_data | Applies to a feature not available in PostgreSQL |
| identity_maximum | character_data | Applies to a feature not available in PostgreSQL |
| identity_minimum | character_data | Applies to a feature not available in PostgreSQL |
| identity_cycle | yes_or_no | Applies to a feature not available in PostgreSQL |
| is_generated | character_data | Applies to a feature not available in PostgreSQL |
| generation_expression | character_data | Applies to a feature not available in PostgreSQL |
| is_updatable | yes_or_no | YES if the column is updatable, NO if not (Columns in base tables are always updatable, columns in views not necessarily) |
Since data types can be defined in a variety of ways in SQL, and PostgreSQL contains additional ways to define data types, their representation in the information schema can be somewhat difficult. The column data_type is supposed to identify the underlying built-in type of the column. In PostgreSQL, this means that the type is defined in the system catalog schema pg_catalog. This column might be useful if the application can handle the well-known built-in types specially (for example, format the numeric types differently or use the data in the precision columns). The columns udt_name, udt_schema, and udt_catalog always identify the underlying data type of the column, even if the column is based on a domain. (Since PostgreSQL treats built-in types like user-defined types, built-in types appear here as well. This is an extension of the SQL standard.) These columns should be used if an application wants to process data differently according to the type, because in that case it wouldn't matter if the column is really based on a domain. If the column is based on a domain, the identity of the domain is stored in the columns domain_name, domain_schema, and domain_catalog. If you want to pair up columns with their associated data types and treat domains as separate types, you could write coalesce(domain_name, udt_name), etc.