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

数据库系统

开发平台:

Unix_Linux

  1. .pgaw:Help.f.t insert end "DROP TABLE" {bold} " removes tables and views from the database. Only its owner may destroy a table or view. A table may be emptied of rows, but not destroyed, by using DELETE. 
  2. If a table being destroyed has secondary indexes on it, they will be removed first. The removal of just a secondary index will not affect the contents of the underlying table. 
  3. " {} "Synopsis" {bold} "
  4. " {} "
  5. DROP TABLE table [, ...]
  6. " {code} "Usage" {bold} "
  7. To destroy the films and distributors tables: 
  8. DROP TABLE films, distributors
  9. " {} "Notes" {bold} "
  10. Refer to CREATE TABLE and ALTER TABLE for information on how to create or modify tables. "