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