Postgresql 中文操作指南
37.60. user_defined_types #
视图 user_defined_types 当前包含当前数据库中定义的所有复合类型。仅显示当前用户可访问(通过所有者或拥有某些特权)的那些类型。
SQL 知道两种用户定义类型:结构化类型(在 PostgreSQL 中也称为复合类型)和单一类型(未在 PostgreSQL 中实现)。为了面向未来,请使用列 user_defined_type_category 来区分这些类型。其他用户定义类型,如基本类型和枚举(PostgreSQL 扩展),在此处未显示。有关域,请参阅 Section 37.23。
Table 37.58. user_defined_types Columns
Column Type Description |
user_defined_type_catalog sql_identifier 包含该类型的数据库名称(始终是当前数据库) |
user_defined_type_schema sql_identifier 包含该类型的架构的名称 |
user_defined_type_name sql_identifier 类型的名称 |
user_defined_type_category character_data Currently always STRUCTURED |
is_instantiable yes_or_no 适用于 PostgreSQL 中不可用的功能 |
is_final yes_or_no 适用于 PostgreSQL 中不可用的功能 |
ordering_form character_data 适用于 PostgreSQL 中不可用的功能 |
ordering_category character_data 适用于 PostgreSQL 中不可用的功能 |
ordering_routine_catalog sql_identifier 适用于 PostgreSQL 中不可用的功能 |
ordering_routine_schema sql_identifier 适用于 PostgreSQL 中不可用的功能 |
ordering_routine_name sql_identifier 适用于 PostgreSQL 中不可用的功能 |
reference_type character_data 适用于 PostgreSQL 中不可用的功能 |
data_type character_data 适用于 PostgreSQL 中不可用的功能 |
character_maximum_length cardinal_number 适用于 PostgreSQL 中不可用的功能 |
character_octet_length cardinal_number 适用于 PostgreSQL 中不可用的功能 |
character_set_catalog sql_identifier 适用于 PostgreSQL 中不可用的功能 |
character_set_schema sql_identifier 适用于 PostgreSQL 中不可用的功能 |
character_set_name sql_identifier 适用于 PostgreSQL 中不可用的功能 |
collation_catalog sql_identifier 适用于 PostgreSQL 中不可用的功能 |
collation_schema sql_identifier 适用于 PostgreSQL 中不可用的功能 |
collation_name sql_identifier 适用于 PostgreSQL 中不可用的功能 |
numeric_precision cardinal_number 适用于 PostgreSQL 中无法使用的功能 |
numeric_precision_radix cardinal_number 适用于 PostgreSQL 中无法使用的功能 |
numeric_scale cardinal_number 适用于 PostgreSQL 中无法使用的功能 |
datetime_precision cardinal_number 适用于 PostgreSQL 中无法使用的功能 |
interval_type character_data 适用于 PostgreSQL 中无法使用的功能 |
interval_precision cardinal_number 适用于 PostgreSQL 中无法使用的功能 |
source_dtd_identifier sql_identifier 适用于 PostgreSQL 中无法使用的功能 |
ref_dtd_identifier sql_identifier 适用于 PostgreSQL 中无法使用的功能 |