programplug Logo



SQL Drop Database

DROP DATABASE IN SQL



The DROP database is used to delete or remove the data from a table in the database.

Syntax:
DROP DATABASE database_name;
							
DROP DATABASE Example:
DROP DATABASE salaryDB;