I have table such as
| work_order_id | part_number | due_date |
|: 1 |:P123: | 2022-03-04:|
|: 2 |:P123: | 2022-03-11:|
|: 3 |:P123: | 2022-04-02:|
Essentially I wanted to create a view where the first and third rows are aggregated by the order of the second column. So the resulting view should look like:
|: {1,2,3}|:P123:| {2022-04-2, 2022-03-11, 2022-04-2:|