drop_operator.hlp
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:1k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. .pgaw:Help.f.t insert end "DROP OPERATOR" {bold} " The DROP OPERATOR statement drops an existing operator from the database. To execute this command you must be the owner of the operator.  
  2. The left or right type of a left or right unary operator, respectively, may be specified as NONE. 
  3. " {} "Synopsis" {bold} "
  4. " {} "
  5. DROP OPERATOR id ( type | NONE [,...] )
  6. " {code} "Usage" {bold} "
  7. Remove power operator a^n for int4: 
  8. " {} "
  9. DROP OPERATOR ^ (int4, int4);
  10.   
  11. " {code} "
  12. Remove left unary operator !a for booleans: 
  13. " {} "
  14. DROP OPERATOR ! (none, bool);
  15.   
  16. " {code} "
  17. Remove right unary factorial operator a! for int4: 
  18. " {} "
  19. DROP OPERATOR ! (int4, none);
  20. " {code} "Notes" {bold} "
  21. The DROP OPERATOR statement is a Postgres language extension. 
  22. Refer to CREATE OPERATOR for information on how to create operators. 
  23. It is the user's responsibility to remove any access methods and operator classes that rely on the deleted operator. 
  24. "