1

我有一个有列的表

date_1,date_2,date_3,
text_1,text_2,text_3. 

我想写一个查询来获取

date_1 union date_2 union date_3 as date 
and text_1 union text_2 union text_3 as text. 

我可以单独合并它们,但我如何加入它们?

4

1 回答 1

0

如果你想要联合的行,那么你可以做..

select date1, text1 from table_1
union
select date2, text2 from table_2
union
select date3, text3 from table_2

如果要单独加入列表,加入的条件是什么?您能否提供更多相关数据?

于 2012-09-17T21:31:42.160 回答