PostgreSQL - Full-Text Search
You want to find rows in table
notes where the content column contains the word 'apple' but not 'pie'. Which tsquery expression correctly achieves this?SELECT * FROM notes WHERE to_tsvector(content) @@ to_tsquery( ? );
