I'm struggling with a query I have to make for a program:
This is the structure of my table (example column names):
One ID and name can have multiple Coefficients, like:
ID-Name-Coefficient 1-NameHere-0.5 1-NameHere-0.6 1-NameHere-0.7
This is how I would like my query result to look like:
1-NameHere-0.5-0.6-0.7
So all the duplicate coefficnents, I want in seperate columns, but all in one row.
What would be the best way to achieve this query?