The DROP DATABASE
statement is used to permanently delete an existing database along with all of its tables, records, and related objects.
SQL Drop DB Syntax
SQL
x
1
DROP DATABASE database_name;
SQL Drop DB Example
This command will completely delete the StudentRecords
database from your system, removing everything stored in it.
SQL
1
1
DROP DATABASE StudentRecords;
SQL Drop DB Visual Diagram
