I have written a query that joins multiple table and gets the result in the below format.
16-Jan-14 16-Jan-14 4 9860,9846,9861,11040,11038,11043 100
The comma separated values is a single column. Now I want to map this csv in the column to their respective names in another table.The result will look like:
16-Jan-14 16-Jan-14 4 name1,name22,name16,name34,name78,name56 100
Is there anyway this can be done in the same query which given me my original result.
Appreciate the help.
Regards