Use `DROP TABLE table_name;`
Replace `table_name` with the name of the table you want to delete
Example: `DROP TABLE employees;`
Use `DROP TABLE IF EXISTS table_name;` to avoid errors if the table does not exist
Be aware that deleting a table removes the table and all its data permanently
Make sure you have the required permissions before running the command
