PostgreSQL - Full-Text Search
Given the table
articles with a column content, what will this query return?SELECT id FROM articles WHERE to_tsvector('english', content) @@ to_tsquery('english', 'database & search');