DROP TABLE table_name;
DELETE FROM `table` WHERE condition
DROP TABLE my_table;
Deletes a table from a database. Example: Removes the users table. DROP TABLE users;