MySql – Delete
If you need to delete a row you can use the DELETE
command with a WHERE
clause dictating which ones:
DELETE FROMtbl_name
WHEREfieldx
= "X";
Example
DELETE FROMcriminals
WHEREcrime
= "Arson";
Further Information and examples here