自拍偷在线精品自拍偷,亚洲欧美中文日韩v在线观看不卡

DROP OPERATOR 中文man頁面

系統(tǒng)
DROP OPERATOR 語句從數(shù)據(jù)庫中刪除一個(gè)現(xiàn)存的操作符。 要執(zhí)行這個(gè)命令,你必須是操作符所有者。

NAME

DROP OPERATOR - 刪除一個(gè)操作符

SYNOPSIS

DROP OPERATOR name ( lefttype | NONE , righttype | NONE ) [ CASCADE | RESTRICT ]

DESCRIPTION 描述

DROP OPERATOR 語句從數(shù)據(jù)庫中刪除一個(gè)現(xiàn)存的操作符。 要執(zhí)行這個(gè)命令,你必須是操作符所有者。  

PARAMETERS 參數(shù)

name

 一個(gè)現(xiàn)存的操作符的名字(可以有模式修飾)。
lefttype

 該操作符左參數(shù)的類型。如果該操作符沒有左參數(shù), 寫 NONE。
righttype

 該操作符右參數(shù)的類型。如果該操作符沒有右參數(shù), 寫 NONE。
CASCADE

 自動(dòng)刪除依賴于此操作符的對(duì)象。
RESTRICT

 如果有任何依賴對(duì)象則拒絕刪除此操作符。這個(gè)是缺省。

EXAMPLES 例子


 將用于integer的冪操作符 a^n 刪除:

DROP OPERATOR ^ (integer, integer);


 為類型 bit 刪除左單目位操作符 ~b: ~b for type bit:

DROP OPERATOR ~ (none, bit);


 刪除用于 integer 的階乘 (x!) :

DROP OPERATOR ! (integer, none);

COMPATIBILITY 兼容性


 在 SQL 標(biāo)準(zhǔn)里沒有 DROP OPERATOR 語句。  

SEE ALSO 參見

CREATE OPERATOR [create_operator(7)]

#p#

NAME

DROP OPERATOR - remove an operator

SYNOPSIS

DROP OPERATOR name ( lefttype | NONE , righttype | NONE ) [ CASCADE | RESTRICT ]

DESCRIPTION

DROP OPERATOR drops an existing operator from the database system. To execute this command you must be the owner of the operator.  

PARAMETERS

name
The name (optionally schema-qualified) of an existing operator.
lefttype
The data type of the operator's left operand; write NONE if the operator has no left operand.
righttype
The data type of the operator's right operand; write NONE if the operator has no right operand.
CASCADE
Automatically drop objects that depend on the operator.
RESTRICT
Refuse to drop the operator if any objects depend on it. This is the default.

EXAMPLES

Remove the power operator a^b for type integer:

DROP OPERATOR ^ (integer, integer);

Remove the left unary bitwise complement operator ~b for type bit:

DROP OPERATOR ~ (none, bit);

Remove the right unary factorial operator x! for type integer:

DROP OPERATOR ! (integer, none);

COMPATIBILITY

There is no DROP OPERATOR statement in the SQL standard.  

SEE ALSO

CREATE OPERATOR [create_operator(7)]

責(zé)任編輯:韓亞珊 來源: CMPP.net
相關(guān)推薦

2011-08-24 14:38:16

DROP OPERAT中文man

2011-08-24 14:31:48

DROP LANGUA中文man

2011-08-24 14:19:14

DROP DOMAIN中文man

2011-08-24 14:13:27

DROP CONVER中文man

2011-08-24 14:16:18

DROP DATABA中文man

2011-08-24 11:23:20

CREATE OPER中文man

2011-08-24 14:25:43

DROP GROUP中文man

2011-08-24 14:28:47

DROP INDEX中文man

2011-08-24 14:40:50

DROP RULE中文man

2011-08-24 14:06:36

DROP AGGREG中文man

2011-08-24 14:22:11

DROP FUNCTI中文man

2011-08-24 14:10:10

DROP CAST中文man

2011-08-24 11:26:46

CREATE OPER中文man

2011-08-24 14:49:13

drop_table中文man

2011-08-24 14:57:06

drop_type中文man

2011-08-24 14:43:21

drop_schema中文man

2011-08-24 15:03:08

drop_view中文man

2011-08-24 14:59:50

drop_user中文man

2011-08-24 14:46:42

drop_sequen中文man

2011-08-24 14:52:31

drop_trigge中文man
點(diǎn)贊
收藏

51CTO技術(shù)棧公眾號(hào)