how to split rows into multiple rows based on values in an array column in postgresql? (see example in description)
i a have postgresql query that gets results like this: id | arrayElements 0 | [0, 2, 1] 1 | [0, 3] 2 | [1] In the above example the values inside arrayElements means something. I want to split this…