I have a table with the columns "Sequence-ID", "Event-ID", "Value"
To one sequence belongs up to 5 events and each event has one value e.g.:
|Sequence-ID | Event-ID | Value |
|------------|----------|-------|
|1 | 1| 7|
|1 | 2| 2|
|1 | 3| 5|
|1 | 4| 9|
|1 | 5| 12|
|2 | 1| 15|
|2 | 2| 8|
|2 | 3| 10|
|2 | 4| 21|
|2 | 5| 17|
How can I select each sequence into one row, separated with semicolon?
|Sequence-ID |Value |
|------------|-------------|
|1 |7;2;5;9;12 |
|2 |15;8;10;21;17|