DROP DOMAIN

用于删除域的 SQL 命令

DROP DOMAIN 是用于删除的 DDL 命令。

DROP DOMAIN 添加于PostgreSQL 7.3

更改历史记录

示例

尝试删除正在使用的域

postgres=# DROP DOMAIN git_sha1 ;
ERROR:  cannot drop type git_sha1 because other objects depend on it
DETAIL:  column commit_ref of table repo_commit_ref depends on type git_sha1
HINT:  Use DROP ... CASCADE to drop the dependent objects too.

删除正在使用的域

postgres=# DROP DOMAIN git_sha1 CASCADE;
NOTICE:  drop cascades to column commit_ref of table repo_commit_ref
DROP DOMAIN

分类

数据类型DDLSQL 命令

另请参阅

CREATE DOMAINALTER DOMAIN

反馈

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