PostgreSQL - Full-Text Search
You want to retrieve rows from the messages table where the body column contains the exact phrase 'quick brown fox'. Which query correctly uses the @@ operator to perform this search?
You want to retrieve rows from the messages table where the body column contains the exact phrase 'quick brown fox'. Which query correctly uses the @@ operator to perform this search?
<-> operator between words in to_tsquery.quick <-> brown <-> fox, which matches the phrase in order.<-> for phrase search in to_tsquery [OK]15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions