delete mysql row table code example
Example 1: mysql delete row
DELETE FROM products WHERE product_id=1;
Example 2: how to delete a table in mysql
DROP TABLE tablename;
DELETE FROM products WHERE product_id=1;
DROP TABLE tablename;