Italian Trulli

SQL Drop Table - How to Drop a Table in SQL

Test Tribe
.
SQL DROP TABLE Query - How To Drop a Table in SQL?

Drop table in SQL with Example



 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.

Post a Comment

0 Comments