將Oracle兩個列合並成一個列 SQL怎麼寫?
比如 有一張表n
字段
a b
1 4
2 5
3 6
合並後為
c
1
2
3
4
5
6
select A from n
union
select B from n