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 1999-2001 by Infinite Software Solutions, Inc. All rights reserved.
Trademark Information