Home Privacy Policy Feedback Link to us Site Map Forums

SQL: DROP TABLE Statement


The DROP TABLE statement allows you to remove a table from the database.

The basic syntax for the DROP TABLE statement is:

DROP TABLE table_name;


For example:

DROP TABLE supplier;

This would drop table called supplier.