1

我有这个:

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

我怎样才能做到这一点?谢谢!

4

1 回答 1

2

使用 UNION

SELECT ColumnA
FROM table

UNION

SELECT ColumnB
FROM table

UNION

SELECT columnC
FROM table
于 2012-06-25T16:52:30.890 回答