Multiple choice sql

When three or more AND and OR conditions are combined, it is easier to use the SQL keyword(s

  1. LIKE only.

  2. IN only.

  3. NOT IN only.

  4. Both IN and NOT IN.

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

The IN and NOT IN keywords allow you to specify multiple values in a WHERE clause, which is much cleaner and easier than writing long strings of OR or AND conditions for the same column.