Hello,
I am having a hard time figuring out how to merge specific rows into one, while leaving the remaining rows as they are.
My table looks like this:
| ID | Field | Value |
| 123 | Game | ToyStory |
| 123 | Animal | Dog |
| 123 | Animal | Cat |
| 123 | Animal | Horse |
| 123 | Flower | Tulip |
| 4567 | Flower | Margarida |
| 4567 | Animal | Horse |
| 4567 | Animal | Tiger |
And I want to turn it into:
| ID | Field | Value |
| 123 | Game | ToyStory |
| 123 | Animal | Dog, Cat, Horse |
| 123 | Flower | Tulip |
| 4567 | Flower | Margarida |
| 4567 | Animal | Horse, Tiger |
Basically I want to merge only the rows in which the Field is Animal, and I want to concatenate the data using commas. While leaving all the other rows as they are. But I only want to merge those who belong to the same ID. Any ideas on how to proceed?