drop_aggregate.7
来自「PostgreSQL 8.2中增加了很多企业用户所需要的功能和性能上的提高,其开」· 7 代码 · 共 52 行
7
52 行
.\\" auto-generated by docbook2man-spec $Revision: 1.1.1.1 $.TH "DROP AGGREGATE" "" "2008-01-03" "SQL - Language Statements" "SQL Commands".SH NAMEDROP AGGREGATE \- remove an aggregate function.SH SYNOPSIS.sp.nfDROP AGGREGATE [ IF EXISTS ] \fIname\fR ( \fItype\fR [ , ... ] ) [ CASCADE | RESTRICT ].sp.fi.SH "DESCRIPTION".PP\fBDROP AGGREGATE\fR will delete an existingaggregate function. To execute this command the currentuser must be the owner of the aggregate function..SH "PARAMETERS".TP\fBIF EXISTS\fRDo not throw an error if the aggregate does not exist. A notice is issuedin this case..TP\fB\fIname\fB\fRThe name (optionally schema-qualified) of an existing aggregate function..TP\fB\fItype\fB\fRAn input data type on which the aggregate function operates.To reference a zero-argument aggregate function, write *in place of the list of input data types..TP\fBCASCADE\fRAutomatically drop objects that depend on the aggregate function..TP\fBRESTRICT\fRRefuse to drop the aggregate function if any objects depend onit. This is the default..SH "EXAMPLES".PPTo remove the aggregate function myavg for type\fBinteger\fR:.sp.nfDROP AGGREGATE myavg(integer);.sp.fi.SH "COMPATIBILITY".PPThere is no \fBDROP AGGREGATE\fR statement in the SQLstandard..SH "SEE ALSO"ALTER AGGREGATE [\fBalter_aggregate\fR(7)], CREATE AGGREGATE [\fBcreate_aggregate\fR(l)]
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?