I use select to some columns see the following example,
select 55,5,8,3
and the result will be

so, how to convert this into rows and get the row_number of each ? like below
row.number | col_val
------------+--------
1 55
2 5
3 8
4 3