DropTable

Oracle DROP TABLE Statement

Oracle DROP TABLE statement is used to remove or delete a table from the Oracle database.

Syntax

  1. DROP [schema_name].TABLE table_name  
  2. CASCADE CONSTRAINTS ]  
  3. [ PURGE ];   

 

Parameters

schema_name: It specifies the name of the schema that owns the table.

table_name: It specifies the name of the table which you want to remove from the Oracle database.

CASCADE CONSTRAINTS: It is optional. If specified, it will drop all referential integrity constraints as well.

PURGE: It is also optional. If specified, the table and its dependent objects are placed in the recycle bin and can?t be recovered.

DROP TABLE Example

  1. DROP TABLE customers;  
This will drop the table named customers. 

DROP TABLE Example with PURGE parameter

  1. DROP TABLE customers PURGE  

This statement will drop the table called customers and issue a PURGE so that the space associated with the customers table is released and the customers table is not placed in recycle bin. So, it is not possible to recover that table if required.