I have an In clause with query inside. I want to add 'NULL' to that IN. How can i add.
Here is my query
WHERE `e`.`lead_id` IN (
select lds.lead_id
from mortgage_lead_leads lds
where lds.loan_officer_id=60
)
which gives 10 records. I want to add another record to that In clause. Can anyone help me out.