The SQL Command to Delete a Table from a Database is
DROP TABLE clone ;
The Command
The Name of the Table being Deleted
There is an obvious concern here, this destroys data, it is like the rm command (Linux/Unix Remove Command)
You always want to know what you are deleting before you delete it AND Drop specific tables without using wildcard characters
Access control may save you, you can only DROP tables you have write access to
What Goes Up Must Come Down