I am doing some basic text matching in Postgres 9.3.5.0.
Here is my code so far:
Select text from eightks
WHERE other_events = true and
keywordRegexs = [\y(director and member \s+ and resigned)\y/ix];
I am getting the following errors
psql:test3.sql:3: invalid command \y(director psql:test3.sql:5: ERROR: syntax error at or near "[" LINE 3: keywordRegexs = [
I am trying to find documents which contain those exact phrases.