MySQL:如何从一列中选择非重复项而不影响其他列?

时间:2017-03-16 14:43:52

标签: php mysql

enter image description here

大家好,我只是想知道如何能够列出所有order_ID,但只保留一个用户名(因此没有重复项) 例如

Lezenko 1,2,3,4,5,7

先生。工匠 6

谢谢!

1 个答案:

答案 0 :(得分:2)

您正在寻找的是group_concat()功能。您可以找到文档here

select user_submitted, group_concat(order_id) as order_id from mytable group by user_submitted