mysql delete table row code example
Example 1: mysql delete row
DELETE FROM products WHERE product_id=1;
Example 2: delete table in mysql
delete table query
DROP TABLE <table name;
e.g. DROP TABLE students;
DELETE FROM products WHERE product_id=1;
delete table query
DROP TABLE <table name;
e.g. DROP TABLE students;