DROP DATABASE

SQL DROP DATABASE Keyword

The DROP DATABASE command is used to delete an existing SQL database completely. This removes all tables, data, and settings stored in the database.

Tutorials dojo strip

SQL DROP DATABASE Syntax

SQL

SQL DROP DATABASE Example

SQL

Note: This command is not supported in SQLite, including our TechKubo playground. SQLite handles databases as individual files, and database creation or deletion is done outside of SQL through file operations.

SQL DROP DATABASE Labs

Tutorials dojo strip