top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Explain three different rules that apply to NULLs when doing comparisons?

+3 votes
601 views
Explain three different rules that apply to NULLs when doing comparisons?
posted Nov 11, 2014 by Archana

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes
  1. For all operators except for concatenation (||), if a value in an expression
    is a NULL, that expression evaluates to NULL

  2. NULL is never equal or not equal to another value

  3. NULL is never TRUE or FALSE

answer Nov 12, 2014 by Arun Gowda
...