I have to convert this:
id name   product description
---------------------------
1  Kurt   p1      water
1  Kurt   p2      salt
2  Claude p3      pepper
2  Claude p4      mint
into this:
id name   product1 description1 product2 description2
-----------------------------------------------------
1  Kurt   p1       water        p2       salt
2  Claude p3       pepper       p4       mint
please, I was searching for an answer and I didn't find this...
Table structure is like:
- client(id, name, and more data)
- products(id, description, and more data)
- prodclient(id, idclient, idproduct)
Thank you
PD. the rows I want to add into the 2nd result columns, are the same data, not the addition of values.
 
    