drop_operator.7
来自「PostgreSQL 8.2中增加了很多企业用户所需要的功能和性能上的提高,其开」· 7 代码 · 共 69 行
7
69 行
.\\" auto-generated by docbook2man-spec $Revision: 1.1.1.1 $.TH "DROP OPERATOR" "" "2008-01-03" "SQL - Language Statements" "SQL Commands".SH NAMEDROP OPERATOR \- remove an operator.SH SYNOPSIS.sp.nfDROP OPERATOR [ IF EXISTS ] \fIname\fR ( { \fIlefttype\fR | NONE } , { \fIrighttype\fR | NONE } ) [ CASCADE | RESTRICT ].sp.fi.SH "DESCRIPTION".PP\fBDROP OPERATOR\fR drops an existing operator fromthe database system. To execute this command you must be the ownerof the operator..SH "PARAMETERS".TP\fBIF EXISTS\fRDo not throw an error if the operator does not exist. A notice is issued in this case..TP\fB\fIname\fB\fRThe name (optionally schema-qualified) of an existing operator..TP\fB\fIlefttype\fB\fRThe data type of the operator's left operand; writeNONE if the operator has no left operand..TP\fB\fIrighttype\fB\fRThe data type of the operator's right operand; writeNONE if the operator has no right operand..TP\fBCASCADE\fRAutomatically drop objects that depend on the operator..TP\fBRESTRICT\fRRefuse to drop the operator if any objects depend on it. Thisis the default..SH "EXAMPLES".PPRemove the power operator a^b for type \fBinteger\fR:.sp.nfDROP OPERATOR ^ (integer, integer);.sp.fi.PPRemove the left unary bitwise complement operator~b for type \fBbit\fR:.sp.nfDROP OPERATOR ~ (none, bit);.sp.fi.PPRemove the right unary factorial operator x!for type \fBbigint\fR:.sp.nfDROP OPERATOR ! (bigint, none);.sp.fi.SH "COMPATIBILITY".PPThere is no \fBDROP OPERATOR\fR statement in the SQL standard..SH "SEE ALSO"CREATE OPERATOR [\fBcreate_operator\fR(7)], ALTER OPERATOR [\fBalter_operator\fR(l)]
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?