How can I get the report to show records when the MRN doesn't exist in the database. The SQL command is below.
select distinct vf.pat_name,pat.birth_date as PT_DOB,vf.mrn,acc.account_name,acc.ssn,acc.birthdate,acc.BILLING_ADDRESS_1,
acc.BILLING_ADDRESS_2,
acc.city,
stat.name as State,
acc.zip
from V_FV_MRN vf
left join patient pat on vf.pat_id = pat.pat_id
left join hsp_account hsp on vf.pat_id = hsp.pat_id
left join epicadm.account acc on hsp.guarantor_id = acc.account_id
left join zc_state stat on acc.state_c = stat.state_c
where acc.account_type_c = 1
and vf.MRN in
('0000010653',
'0000011356',
'0000039421',
'0000058666',
'0000066987',
'0000068780',
'0000069023',
'0000080712',
'0000091776',
'0000105433',
'0000118818')