I'm looking for a sql pattern for an aggregate function to aggregate arrays. If I have 2 rows:
|id | array |
|----+---------------|
|1 | [1,2,3,4] |
|1 | [5,6] |
|1 | [7,8] |
|--------------------|
And I want to do the following:
select id, *aggregate_function*(array)
from table
group by id
I want the result to be:
|id | *aggregate_function* |
|-----+-----------------------|
|1 | [1,2,3,4,5,6,7,8] |
|-----------------------------|
There is no native postgres function that does this aggregation. But perhaps there's sql pattern that can be used here?