0

我有以下具有挑战性的数据输出:

**AD_ID         Keyword**
6005090341554   Vitamin C
6005090341554   Vitaminsiz
6005090341554   Supplement Superstores
6005090341554   #Dietary supplement

我的问题是如何通过以下方式使我的查询输出:

**Ad_ID         Keywords**
6005090341554   Vitamin C,Vitaminsiz,Supplement Superstores,#Dietary supplement

谢谢你!

4

1 回答 1

0

使用GROUP BYGROUP_CONCAT

SELECT Ad_ID,GROUP_CONCAT(Keyword) as Keywords FROM my_table GROUP by Ad_ID;
于 2012-11-20T23:39:46.993 回答