SQL: DROP Table

The basic syntax for a DROP TABLE is:

DROP TABLE table_name;


For example:

DROP TABLE supplier;

This would drop table called supplier.

Recent Tutorials