How can you modify this query to find rows where description contains either 'apple' or 'orange' but not 'banana' using the @@ operator?
SELECT * FROM products WHERE to_tsvector(description) @@ to_tsquery('apple | orange');ASELECT * FROM products WHERE to_tsvector(description) @@ to_tsquery('(apple | orange) & !banana');
BSELECT * FROM products WHERE to_tsvector(description) @@ to_tsquery('apple | orange | !banana');
CSELECT * FROM products WHERE to_tsvector(description) @@ to_tsquery('apple & orange & !banana');
DSELECT * FROM products WHERE to_tsvector(description) @@ to_tsquery('apple | orange & !banana');