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

1 Like

Answer

IS operator

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

Answered By

1 Like


Related Questions