transfer rows to multiple columns
if we have data like
id usd_amount eur_amount
1 100 120
2 1000 1200
we want the output
id amount
1 100
1 120
2 1000
2 1200
0
if we have data like
id usd_amount eur_amount
1 100 120
2 1000 1200
we want the output
id amount
1 100
1 120
2 1000
2 1200