STATEMENT:  DROP

DROP {TABLE table | INDEX index ON table}
 
The DROP statement can be used to delete an existing index from a table...
 
DROP INDEX UniqueValues ON Names;
 
...or delete an entire table from a database:
 
DROP TABLE Names;

You must close a table before you use the DROP statement.


Copyright 2000 by Infinite Software Solutions, Inc.
Trademark Information