select t1.col1, t1.col2, t2.csvCol
from table1 t1,
(select colA|| ',' ||colB|| ',' ||colC as csvCol from table 2) t2
where t1.linkingKey = t2.linkingKey
---------------------------------------
select t1.col1, t1.col2, t2.colA||','||t2.colB||','||t2.colC as csvCol
from table1 t1, table2 t2
where t1.linkingKey = t2.linkingKey
select t1.col1,t1.col2,t2.colc
from table1 t1,table2 t2
where t1.col1=t2.colA