Drop Database Usage in SQL

Itacen Sabacok | May 25, 2021

DROP DATABASE statement is used to drop an existing database.

WARNING

Be careful before dropping a database because it will delete specified database.

1-- syntax
2DROP DATABASE databasename;
3
4-- example
5DROP DATABASE employees;