See Also
You are here: SQL Reference > Data Definition > DROP TABLE
ContentsIndexHome
PreviousUpNext
DROP TABLE
DROP DATABASE

 

Syntax

DROP DATABASE database_name

 

Description 

Deletes the database named database_name in the current cluster. All table structure and data in the database will be lost. 

 

Example  

DROP DATABASE example;

 

 

Related