Let's say I have this table
Col-A Col B
12
13
fifteen
2 1
2 2
2 8
And I want the query to return a result set built from Col-A and an array of all Col-B values.
The selection value that will be returned for this particular table:
Record 1: 1, [2,3,5]
Record 2: 2, [1,2,8]
Is this achievable?
Thanks.
source share