MySQL usuń cały wiersz w warunkach

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