I need to implement the old style SQL outer join with condition to the new style.
I am unable to convert the last line of the Join with condition.
Old Style Query:
SELECT cpd.customer_ref, cpd.product_seq, bci.contract_inst_id, 
bci.start_dat  bci_start_dat, bci.end_dat bci_end_dat 
FROM custproductdetails cpd, balcontractinstance bci
WHERE cpd.customer_ref = bci.customer_ref(+)
AND cpd.contract_seq = bci.contract_seq(+)
AND cpd.end_dat >=  bci.start_dat(+) AND cpd.end_dat <= bci.end_dat(+);
 
     
     
     
    