To delete a table using SQL, use the following formula:
DROP TABLE TableName
The DROP TABLE expression is required and it is followed by the name of the undesired table. Here is an example:
DROP TABLE Students;
GO