UPDATE products SET full_description = REPLACE(full_description, REGEXP "<h2.+>", "<h2>");
REGEXP "<h2.+>"
UPDATE products SET full_description = REGEXP_REPLACE(full_description, "<h2.+>", "<h2>");
UPDATE products SET full_description = REGEXP_REPLACE(full_description, '<h2.+>', '<h2>');