DELETE Statement
Removes one or more rows from a table.
DELETE FROM employees WHERE department_id = 30;If you omit the WHERE clause, all rows will be deleted.
Removes one or more rows from a table.
DELETE FROM employees WHERE department_id = 30;If you omit the WHERE clause, all rows will be deleted.