I need to "append" data in my rows together - clearer by example
I have data, obtained by joining 2 tables :
Name | LocationID | Location
--------------------------------
Russ | 1 | New York
Russ | 2 | London
I want to change the form to
Name | Location1 | Location
-----------------------------
Russ | New York | London
(I know there will be only be a max of 2 mappings )
can anyone help ?
Thanks