Answers for "delete row in a table mysql with condition"

0

mysql delete entire row on condition

DELETE FROM my_table WHERE col1 > 2;
DELETE FROM my_table WHERE col1 IS NOT NULL;
Posted by: Guest on May-08-2021

Code answers related to "delete row in a table mysql with condition"

Browse Popular Code Answers by Language