SQL DROP TABLE Query
In SQL
DROP TABLE Statement is used to Drop a table from the database
If We Drop a table it Remove the All the data and its Structure (Column)
From table .
Drop table Synatx-
SQL>DROP TABLE table_name;
Drop table Example-
SQL>DROP TABLE Student;
In above Example it will drop the
student table from the data base