I have a [mapping] table with two columns like below
id | values
1 | 1,2
2 | 1,2,3
3 | 1,1
4 | 1,1,2
and the other table [map] is similar to this
sno | values
1 | Test
2 | Hello
3 | Hai
My expected result
id | values
1 | Test,Hello
2 | Test,Hello,Hai
3 | Test,Test
4 | Test,Test,Hello
Is it possible? If possible, someone can create a request for me.
source
share