Pokud nepotřebujete regulární výraz, je efektivnější použít string_to_array()
místo regexp_split_to_table()
. Chcete-li získat index pole, použijte with ordinality
select t.id,
x.idx,
x.word
from the_table t,
unnest(string_to_array(string_data, ';')) with ordinality as x(word, idx)
order by t.id, x.idx;