Write a DELETE command to delete all the records from CUSTOMERS table. code example
Example: sql delete where in
-- Deletes all records where `columnName` matches the values in brackets.
DELETE FROM tableName WHERE columnName IN ('val1', 'val2', 'val3');