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

数据库系统

开发平台:

Unix_Linux

  1. ." This is -*-nroff-*-
  2. ." XXX standard disclaimer belongs here....
  3. ." $Header: /usr/local/cvsroot/pgsql/src/man/Attic/drop_aggregate.l,v 1.5 1998/06/23 17:52:35 momjian Exp $
  4. .TH "DROP AGGREGATE" SQL 11/05/95 PostgreSQL PostgreSQL
  5. .SH NAME
  6. drop aggregate - remove the definition of an aggregate
  7. .SH SYNOPSIS
  8. .nf
  9. fBdrop aggregatefR aggname aggtype
  10. .fi
  11. .SH DESCRIPTION
  12. .BR "drop aggregate"
  13. will remove all reference to an existing aggregate definition.  To
  14. execute this command the current user must be the the owner of the
  15. aggregate.
  16. .SH EXAMPLE
  17. .nf
  18. --
  19. --Remove the average aggregate for type int4
  20. --
  21. drop aggregate avg int4
  22. .fi
  23. .SH "SEE ALSO"
  24. create_aggregate(l).