What would I need to look into form making a query on a table that looks like this:
+---+---+---+
| A | B | C |
+---+---+---+
| 1 | x | 2 |
+---+---+---+
| 1 | x | 3 |
+---+---+---+
| 1 | x | 4 |
+---+---+---+
| 2 | y | 5 |
+---+---+---+
| 2 | y | 6 |
+---+---+---+
Into results that looks like this:
+---+---+-------+
| A | B | C |
+---+---+-------+
| 1 | x | 2 3 4 |
+---+---+-------+
| 2 | y | 5 6 |
+---+---+-------+
The rows that have similar values from attribute A are grouped into one column though the different values from C are merged together.
Please let me know if you can help. Thanks