जैसा कि अन्य ने सुझाव दिया है कि उपनाम का उपयोग करें:
select c.consol_invoice
,cu.name as name1
,cu.cust_code
,c.bu_name
,clang.name as name2
from consl_inv c
left join customers cu
on c.cust_code = cu.cust_code, customers_lang clang
where upper(clang.name) like ?
and upper(clang.language_cd) = ?
and c.cust_code = clang.cust_code
जैसा कि आप देख सकते हैं कि मैंने चयनित कॉलम cu.name और क्लैंग.नाम में उपनाम जोड़े हैं ताकि क्वेरी परिणाम में दो अलग-अलग कॉलम हों।