I have a table with regular expressions which I need to use to filter rows from another table.
Something like:
SELECT *
FROM a
WHERE foo SIMILAR TO '(SELECT regex FROM b)'
Obviously, that doesn't work because that isn't the syntax and there are multiple rows in b that I need to iterate through.
I'm using PostgreSQL 8.3.
SIMILAR TOdoes not use regular expressions, but its own peculiar set of patterns - which are internally rewritten into regular expressions? I recently wrote a comprehensive answer about that on dba.SE – Erwin Brandstetter Mar 6 '12 at 23:58