-- Remove frameshifted rows by detecting InstitutionCodes without any letters
DELETE FROM :table
WHERE NOT COALESCE("InstitutionCode" ~ '[[:alpha:]]', false)
;