MySQL Exclua a linha inteira na condição

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