Multiple choice technology mainframe

Which of the following is not a comparison operator used in conditions ?

  1. WHERE

  2. AND

  3. IS NULL

  4. BETWEEN

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

WHERE is a SQL clause that introduces conditions, not a comparison operator itself. AND is a logical operator that combines conditions, IS NULL checks for null values, and BETWEEN tests range conditions - these are all valid operators or predicates used within WHERE clauses.