Multiple choice technology databases

which of the following is not a comparison condition?

  1. NOT LIKE

  2. IN (set)

  3. ==

  4. ^=

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

NOT LIKE, IN (set), and ^= are all valid SQL comparison operations: NOT LIKE matches pattern exclusion, IN tests membership in a set, and ^= is a valid 'not equal' operator. The == operator is not valid SQL syntax - SQL uses a single equals sign (=) for equality comparison.