Als je geen regex nodig hebt, is het efficiënter om string_to_array()
te gebruiken in plaats van regexp_split_to_table()
. Gebruik with ordinality
om de array-index te krijgen
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;