PostgreSQL - Full-Text Search
Given the table
articles with column body, what will this query return?SELECT title, ts_rank(to_tsvector(body), to_tsquery('postgres')) AS rank FROM articles ORDER BY rank DESC LIMIT 3;