SQL DELETE

The DELETE command is used to remove records from a table.

DELETE FROM customers
WHERE customerID = 1

DANGER!

Using an DELETE command without a WHERE will delete all records in the table

DELETE FROM customers