I'm using a where clause that checks a description field, and selects where that description is NOT like something. For some reason, this excludes all records whose description field is null.
EG.
WHERE sysdba.SALESORDERDETAIL.DESCRIPTION NOT LIKE '%Membership%'
If description = "something", the row is returned.
If description = "1998 Membership fees", the row is not returned.
If description = "<NULL>", the row is not returned.
What can I do to get the 3rd case(description = <NULL>) to return the row?
EG.
WHERE sysdba.SALESORDERDETAIL.DESCRIPTION NOT LIKE '%Membership%'
If description = "something", the row is returned.
If description = "1998 Membership fees", the row is not returned.
If description = "<NULL>", the row is not returned.
What can I do to get the 3rd case(description = <NULL>) to return the row?