drop_view.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_view.l,v 1.4 1998/06/24 13:21:26 momjian Exp $
  4. .TH "DROP VIEW" SQL 04/25/94 PostgreSQL PostgreSQL
  5. .SH NAME
  6. drop view - removes a view from Postgres
  7. .SH SYNOPSIS
  8. .nf
  9. fBdrop viewfR view_name
  10. .fi
  11. .SH DESCRIPTION
  12. This command drops an existing view from the Postgres system.  To
  13. execute this command you must be the owner of the view.
  14. .SH EXAMPLE
  15. .nf
  16. /*
  17.  * this command will remove the "myview" view
  18.  */
  19. drop view myview
  20. .fi
  21. .SH "SEE ALSO"
  22. create_view(l),
  23. drop_rule(l).