I have the below query where i am comparing multiple columns with same sub query multiple times. is there a way to call only one sub query compare with multiple columns. I know it is possible for AND but is it possible for OR.
select * from catalog
where
APPROVER_USER=(select usr_key from usr where usr_login='abcd')
or CERTIFIER_USER =(select usr_key from usr where usr_login='abcd')
or FULFILLMENT_USER =(select usr_key from usr where usr_login='abcd')
;