I need to convert array elements to rows. Suppose that I have the array {5,77,39,19}. I need it as a table with the index in one column and the element in the other column:
Which command does this?
Code:
index | element ------+-------- 1 | 5 2 | 77 3 | 39 4 | 19
Comment