Můžete použít unnest
otevřete pole a poté array_agg
aby je dal dohromady:
select array_agg(c)
from (
select unnest(column_name)
from table_name
) as dt(c);
Můžete použít unnest
otevřete pole a poté array_agg
aby je dal dohromady:
select array_agg(c)
from (
select unnest(column_name)
from table_name
) as dt(c);