Hi there,
In tblCONTACT there is a field DONOTMAILREASON
I am trying to filter out people who have died, who might have DONOTMAILREASON set to:
- Deceased
- Deceased_Flag
So my logic is:
WHERE DONOTMAILREASON<>'Deceased'
AND DONOTMAILREASON<>'Deceased_Flag'
To my utter surprise, the only records returned are ones where DONOTMAILREASON has some value other than 'Deceased' or 'Deceased_flag', like 'Gone Away' or 'Do not mail'.
All the thousand of records where DONOTMAILREASON is null have been removed from the results.
Is it just Hangover-Sunday or is NULL = 'Deceased' somehow?
Please help!
Thanks