DROP TABLE customers;
DROP TABLE IF EXISTS customers;
Use the TRUNCATE TABLE statement to empty a table of all of its records but retain the table structure.
TRUNCATE TABLE
TRUNCATE TABLE customers;
DROP TABLE
Back