PostgreSQL - Full-Text Search
Which of the following is the correct way to write a query using the @@ operator to search for the term 'database' in a tsvector column named content?
Which of the following is the correct way to write a query using the @@ operator to search for the term 'database' in a tsvector column named content?
@@ operator requires a tsvector on the left and a tsquery on the right.to_tsquery('database') as the right operand.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions