Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Everyone,
I am trying to concatenate fields from different records, the "Lot" that share the same "Order" number.
for example:
Order | Lot
1 | 123
1 | 1234
2 | 456
2 | 789
i'd like the result to be:
Order | Lot
1 | 123, 1234
2 | 456, 789
any ideas?
Thanks!
Hi Roi, concat() function can do that:
LOAD Order,
Concat(Lot, ', ') as Lot
Resident TableName
Group by Order;
Hi Roi, concat() function can do that:
LOAD Order,
Concat(Lot, ', ') as Lot
Resident TableName
Group by Order;
Thanks for the help Ruben