oos-utils icon indicating copy to clipboard operation
oos-utils copied to clipboard

Null aware equality comparison

Open janihur opened this issue 8 years ago • 0 comments

Implements the following truth table where nulls are equal:

A    B    RESULT
---- ---- ------
NULL NULL TRUE
NULL 1    FALSE
1    1    TRUE
1    2    FALSE

Demonstration available in https://github.com/janihur/oos-utils-sandbox:

  1. oos_equal.pks
  2. oos_equal.pkb
  3. oos_equal_example.sql

janihur avatar Dec 23 '16 07:12 janihur