select * from sup_inv_table where ( acct_m_ser_no_jv,acct_m_ser_no_ej,acct_m_ser_no_pc) in (select acct_m_ser_no,acct_m_ser_no,acct_m_ser_no from acct_d where acct_code='1405')
got result with following query
select * from sup_inv_table where acct_m_ser_no_jv in (select acct_m_ser_no from acct_d where acct_code='1405')
or acct_m_ser_no_ej in (select acct_m_ser_no from acct_d where acct_code='1405')or acct_m_ser_no_pc in (select acct_m_ser_no from acct_d where acct_code='1405')
suggest another way