|
SQL Drop Table
The DROP TABLE statement is used to delete a table.
Syntax:
DROP TABLE table_name
Example:
DROP TABLE Users
SQL Drop Database
The DROP DATABASE statement is used to delete a database.
Syntax:
DROP DATABASE database_name
Example:
DROP DATABASE students
|