mysql hapus seluruh baris dengan syarat

DELETE FROM my_table WHERE col1 > 2;
DELETE FROM my_table WHERE col1 IS NOT NULL;
VasteMonde