Does anyone know how to remove a record from DB according to the regexp pattern? So now I have found all the required data for removal like so:
SELECT code, regexp_matches(code, '^(?!([EHIVPZ])).*') code
FROM "sku";
but cannot figure out how to remove them properly?