I want few columns of a table data into a single column of other table with out using union all.
For example, if the original table is:
acct col1 col2 col3
1 x y z
2 a b c
I want a new table (with value as a column)
value
x
a
y
b
z
c
The order does not matter to me.
Can anyone help me out?