to delete particular row in mysql code example
Example 1: mysql delete row
DELETE FROM products WHERE product_id=1;
Example 2: how to delete all the rows in a table without deleting the table in mysql
delete from tableName;
DELETE FROM products WHERE product_id=1;
delete from tableName;