从多列中选择不同的一列

时间:2012-06-25 16:50:04

标签: sql select

我有这个:

ColumnA    ColumnB    ColumnC
Dog        Soda       Book
CatIce     Juice      Notebook      
Bird       Water      Pencil
Dog        Water      Notebook

使用此选择:

select ColumnA, ColumnB, ColumnC from table     

我想要一个这样的清单:

ColumnD
Bird
Book
Cat
Dog
Ice
Juice
Notebook      
Pencil
Soda
Water

我该怎么做?谢谢!

1 个答案:

答案 0 :(得分:2)

使用UNION

SELECT ColumnA
FROM table

UNION

SELECT ColumnB
FROM table

UNION

SELECT columnC
FROM table