drop_table.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_table.l,v 1.4 1998/06/24 13:21:26 momjian Exp $
  4. .TH "DROP TABLE" SQL 09/26/97 PostgreSQL
  5. .SH NAME
  6. drop table - destroy existing classes
  7. .SH SYNOPSIS
  8. .nf
  9. fBdrop tablefR classname-1 { fB,fR classname-i }
  10. .fi
  11. .SH DESCRIPTION
  12. .BR "Drop Table"
  13. removes classes from the data base.  Only its owner may destroy a
  14. class.  A class may be emptied of instances, but not destroyed, by
  15. using 
  16. .IR delete(l).
  17. .PP
  18. If a class being destroyed has secondary indices on it, then they will
  19. be removed first.  The removal of just a secondary index will not
  20. affect the indexed class.
  21. .PP
  22. The destruction of classes is not reversible.  Thus, a destroyed class
  23. will not be recovered if a transaction which destroys this class fails
  24. to commit.  In addition, historical access to instances in a destroyed
  25. class is not possible.
  26. .SH EXAMPLE
  27. .nf
  28. --
  29. --Destroy the emp class
  30. --
  31. drop table emp
  32. .fi
  33. .nf
  34. --
  35. --Destroy the emp and parts classes
  36. --
  37. drop table emp, parts
  38. .fi
  39. .SH "SEE ALSO"
  40. delete(l),
  41. drop_aggregate(l),
  42. drop_database(l),
  43. drop_function(l),
  44. drop_index(l),
  45. drop_operator(l),
  46. drop_rule(l),
  47. drop_sequence(l),
  48. drop_trigger(l),
  49. drop_type(l),
  50. drop_view(l).