34.42. sequences

Представление sequences показывает все последовательности, определённые в текущей базе данных. В нём показываются только те последовательности, к которым имеет доступ текущий пользователь (являясь владельцем или имея некоторые права).

Таблица 34-40. Колонки sequences

ИмяТип данныхОписание
sequence_catalogsql_identifierИмя базы данных, содержащей последовательность (всегда текущая база)
sequence_schemasql_identifierИмя схемы, содержащей последовательность
sequence_namesql_identifierИмя последовательности
data_typecharacter_dataТип данных последовательности. В PostgreSQL на данный момент это всегда bigint.
numeric_precisioncardinal_numberЭта колонка содержит точность (объявленную или неявную) типа данных последовательности (см. выше). Точность определяет число значащих цифр. Она может выражаться в десятичных (по основанию 10) или двоичных (по основанию 2) цифрах, согласно колонке numeric_precision_radix.
numeric_precision_radixcardinal_numberЭта колонка определяет, по какому основанию задаются значения в колонках numeric_precision и numeric_scale. Возможные варианты: 2 и 10.
numeric_scalecardinal_numberЭта колонка содержит масштаб (объявленный или неявный) типа данных последовательности (см. выше). Масштаб определяет число значащих цифр справа от десятичной точки. Он может выражаться в десятичных (по основанию 10) или двоичных (по основанию 2) цифрах, согласно колонке numeric_precision_radix.
start_valuecharacter_dataНачальное значение последовательности
minimum_valuecharacter_dataМинимальное значение последовательности
maximum_valuecharacter_dataМаксимальное значение последовательности
incrementcharacter_dataШаг увеличения последовательности
cycle_optionyes_or_noYES, если последовательность зацикливается, или NO в противном случае

Заметьте, что, согласно стандарту SQL, начальное, минимальное, максимальное значение и шаг выдаются в виде символьных строк.

34.42. sequences

The view sequences contains all sequences defined in the current database. Only those sequences are shown that the current user has access to (by way of being the owner or having some privilege).

Table 34-40. sequences Columns

NameData TypeDescription
sequence_catalogsql_identifierName of the database that contains the sequence (always the current database)
sequence_schemasql_identifierName of the schema that contains the sequence
sequence_namesql_identifierName of the sequence
data_typecharacter_data The data type of the sequence. In PostgreSQL, this is currently always bigint.
numeric_precisioncardinal_number This column contains the (declared or implicit) precision of the sequence data type (see above). 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.
numeric_precision_radixcardinal_number 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.
numeric_scalecardinal_number This column contains the (declared or implicit) scale of the sequence data type (see above). 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.
start_valuecharacter_dataThe start value of the sequence
minimum_valuecharacter_dataThe minimum value of the sequence
maximum_valuecharacter_dataThe maximum value of the sequence
incrementcharacter_dataThe increment of the sequence
cycle_optionyes_or_noYES if the sequence cycles, else NO

Note that in accordance with the SQL standard, the start, minimum, maximum, and increment values are returned as character strings.

FAQ