WHERE
(B.ELIGIBILITY_FLG <>'Y' or B.ELIGIBILITY_FLG is NULL)
and DM.ELIGIBILITY_FLG <>'Y'
B is Sol Tracker and DM is Duty Manager
I want to see all rows where B is not Y or B is Null.
But I don’t want to
WHERE
(B.ELIGIBILITY_FLG <>'Y' or B.ELIGIBILITY_FLG is NULL)
and DM.ELIGIBILITY_FLG <>'Y'
B is Sol Tracker and DM is Duty Manager
I want to see all rows where B is not Y or B is Null.
But I don’t want to