Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Table A: Primary key is contact id but some cells have two contact id in it.
Table B: Contact id is the primay key. Contact name.
I want to left join Table B into Table A, so the contact names would show in the same column with comma seperared according to the contact id in the Table A.
How can I do it?
aggr(concat([Contact Email],','),id)
Client Product
1 A
1 B
2 B
2 C
2 D
load Client,concat(Product,'-') as NewProduct resident Tablename group by Client;
Can you try like above
after i added it, after the aggr , lines are all red in errors.
it has errors
Test:
Load * inline [
Client, Product
1 ,A
1,B
2,B
2,C
2,D
];
load Client,concat(Product,'-') as NewProduct resident Test group by Client;
Hey, concat name is working but concat emails has errors.
Thank you
What error you are getting