.
SQL DROP TABLE Query - How To Drop a Table in SQL?
In SQL
DROP TABLE Statement is used to Drop a table from the database
If We Drop a table it Removes All the data and its Structure (Column)
From the table.
Syntax of Drop Table
DROP TABLE table_name;
Example of Drop Table
DROP TABLE Student;
In the above example, it will drop the
student table from the database.
0 Comments