I am having two tables:
table1 : test1 desc test1 empcode number(6) qualification_code number(2) table2 :test2 desc test2 qualification_code number(2) qualification_name varchar2(10)
select * from test1
120633 10 120633 20 120633 30
select * from test2
10 BSC 20 MCA 30 MBA
I want to select from two tables and I want to get the output as :
empcode :120633 Qualification : BSC,MCA,MBA
How to get this above output.