DROP Statement:
With the help of drop statement we can easily delete a table or a database and it is a DML(Data Manipulation Language) command.
Syntax to drop a table:
DROP table tablename;
Example:
DROP table Employee;
It will delete Employee table from the database.
Syntax to drop a database:
DROP database databasename;
Example
DROP database Student;
It will delete Student database.
0 Comment(s)