Computer Science

Which operator tests a column for the absence of data (i.e., NULL value) ?

  1. EXISTS operator
  2. NOT operator
  3. IS operator
  4. None of these

SQL Queries

4 Likes

Answer

IS operator

Reason — The NULL value in a column can be searched in a table using the IS operator.

Answered By

2 Likes


Related Questions