drop_domain.7
来自「PostgreSQL 8.2中增加了很多企业用户所需要的功能和性能上的提高,其开」· 7 代码 · 共 47 行
7
47 行
.\\" auto-generated by docbook2man-spec $Revision: 1.1.1.1 $.TH "DROP DOMAIN" "" "2008-01-03" "SQL - Language Statements" "SQL Commands".SH NAMEDROP DOMAIN \- remove a domain.SH SYNOPSIS.sp.nfDROP DOMAIN [IF EXISTS ] \fIname\fR [, ...] [ CASCADE | RESTRICT ].sp.fi.SH "DESCRIPTION".PP\fBDROP DOMAIN\fR will remove a domain. Only theowner of a domain can remove it..SH "PARAMETERS".TP\fBIF EXISTS\fRDo not throw an error if the domain does not exist. A notice is issued in this case..TP\fB\fIname\fB\fRThe name (optionally schema-qualified) of an existing domain..TP\fBCASCADE\fRAutomatically drop objects that depend on the domain (such astable columns)..TP\fBRESTRICT\fRRefuse to drop the domain if any objects depend on it. This isthe default..SH "EXAMPLES".PPTo remove the domain \fBbox\fR:.sp.nfDROP DOMAIN box;.sp.fi.SH "COMPATIBILITY".PPThis command conforms to the SQL standard, except for theIF EXISTS option, which is a PostgreSQL extension..SH "SEE ALSO"CREATE DOMAIN [\fBcreate_domain\fR(7)], ALTER DOMAIN [\fBalter_domain\fR(l)]
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?