The DELETE statement is used to remove one or more rows from a table.
DELETE FROM persons; /*Delete all records*/
DELETE FROM persons WHERE id > 3;