MySQL SQL
MySQL DELETE
Remove selected rows from a MySQL table.
Delete rows
DELETE FROM products
WHERE discontinued = 1;Without WHERE, all rows are deleted while the table remains. Check matching rows before deletion.
Continue learning
MySQL SQL
Remove selected rows from a MySQL table.
DELETE FROM products
WHERE discontinued = 1;Without WHERE, all rows are deleted while the table remains. Check matching rows before deletion.
Continue learning