SQLMemTable: Embedded BDE Alternative
In-Memory SQL Database for Delphi / C++Builder



DROP TABLE Statement
Previous  Top  Next


Introduction

The DROP TABLE statement is used to delete table from the database.

Syntax

DROP TABLE table_name [CASCADE | RESTRICT]

CASCADE option forces to drop all other objects in database referencing this table (like foreign key constraints).

Here is an example:

DROP TABLE Test

Note:
If the table does not exist, DROP TABLE will not raise an exception.


© AidAim Software SQLMemTable: