After joining multiple tables I have some results that differ only in one column. Is there a "easy" way to compact those differences to one row ?
For example, lets assume that after join I have something like this:
id | project | date | Oranges | Apples | Name
1 xaxa 1.1.2000 yes yes Tom
1 xaxa 1.1.2000 yes yes Bob
1 xaxa 1.1.2000 yes yes Jan
And I would like to have something like this:
id | project | date | Oranges | Apples | Name
1 xaxa 1.1.2000 yes yes Tom, Bob, Jan
Still begginer here, please be gentle :)