DELETE statement
DELETE FROM products WHERE productID = 6;
DELETE FROM products WHERE categoryID = 3;
DELETE FROM categories WHERE categoryID > 3;
DELETE FROM orderItems
WHERE orderID IN (
SELECT orderID FROM orders WHERE customerID = 1
);
DELETE statement to delete one or more rows from the table you name in the DELETE clause.WHERE clause.WHERE clause.