PostgreSQL - Full-Text Search
Given the table
articles with a column content containing 'PostgreSQL is a powerful database system.', what is the output of this query?SELECT ts_headline(content, 'database') FROM articles;
