删除类型

用于删除自定义数据类型的SQL命令

DROP TYPE 是用于删除自定义 数据类型 的DDL命令。

DROP TYPE 一直存在于PostgreSQL中。

更改历史

示例

基本的 DROP TYPE 执行示例

postgres=# DROP TYPE unused_type;
DROP TYPE

删除具有依赖项的类型

postgres=# DROP TYPE some_enum_type;
ERROR:  cannot drop type some_enum_type because other objects depend on it
DETAIL:  column thing_type of table thing depends on type some_enum_type

postgres=# DROP TYPE some_enum_type CASCADE;
NOTICE:  drop cascades to column thing_type of table thing
DROP TYPE

尝试删除不存在的类型

postgres=# DROP TYPE no_such_type;
ERROR:  type "no_such_type" does not exist

安全地尝试删除可能不存在的类型

postgres=# DROP TYPE IF EXISTS no_such_type;
NOTICE:  type "no_such_type" does not exist, skipping
DROP TYPE

无法删除基本的PostgreSQL类型

postgres=# DROP TYPE pg_lsn;
ERROR:  cannot drop type pg_lsn because it is required by the database system

分类

数据类型DDLSQL命令

参见

创建类型修改类型pg_type

反馈

请在此提交关于 "DROP TYPE" 的任何评论、建议或更正 此处