I tried to join these tables using repeating attribute:
table1:
r_object_id codes
... 1,2,3,4,5
... 7,6,3,4,5
... 1,5,4,2,3
Where codes
attribute is the repeating attribute.
table2:
r_object_id name code
... hello 1
... aba 2
... father 3
... mother 4
... hello2 5
... hello3 6
... hello4 7
I want result like this:
table1.r_object_id names
... hello,aba,father,mother,hello2
What can I do?