PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Crea una stringa dall'array

puoi combinare più operazioni come generate_subscripts e array per ottenere il risultato:

with mtab as (
      SELECT id, name, array_append(arrayofparents,id) as arrayofparents,
      generate_subscripts(array_append(arrayofparents, id), 1) AS p_id FROM tab where id=2
)
select distinct array_to_string(
  array(
    select tab.name from tab join mtab t on tab.id=t.arrayofparents[t.p_id]
  ), '->'
) ;

esempio live Sqlfiddle

oppure usa outer join combinato con any:

SELECT coalesce(string_agg(p.name, '->') || '->' || t.name, t.name) AS parentnames
FROM tab AS t
  LEFT JOIN tab AS p ON p.id = ANY(t.arrayofparents)
 where t.id =7 
GROUP BY t.id, t.name

esempio live Sqlfiddle