The DROP DATABASE command permanently removes a database, its schemas, and all its data. This action is irreversible.
Syntax:
DROP DATABASE database_name;
Safety Features:
DROP DATABASE IF EXISTS database_name;WITH (FORCE) to kick out active users and proceed with the deletion:
DROP DATABASE database_name WITH (FORCE);