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"的任何评论、建议或更正 此处