Hi all,
I have two columns as below
| Language ID | Language Name |
| 1 | Java |
| 2 | C++ |
| 3 | PL\SQL |
| 4 | Python |
| 5 | C# |
This is like a mapping table and i know that if i have Language ID as "1" in another table, then i can replace it with "Java" by doing a join on both tables with "Language ID" as the common column.
However, i want to achieve this
| Language ID | Language Name |
| 1,2 | Java,C++ |
How is this possible?
Thanks,
Rajat