Deprecated: mysql_connect(): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in /home/lsp4you/public_html/connect.php on line 2 LSP4YOU - Learner's Support Publications

SQL - DROP DATABASE

The SQL DROP DATABASE statement is used to drop an existing database from an SQL schema.
The basic syntax of DROP DATABASE statement is:

DROP DATABASE <Database Name>;
For example:
mysql> drop database testdb;
Query OK, 0 rows affected (0.00 sec)

mysql>