I''ll explain what I need to do on example. First of all, we have a simple table like this one, named table:
id | name
===+=====
1 | foo
1 | bar
1 | foobar
2 | foo
2 | bar
2 | foobar
Now the query:
SELECT t.* FROM table t GROUP BY t.id
Will get us result similar to this one:
id | name
===+=====
1 | foo
2 | foo
But is it possible, to collect all values of name to have result like this?
id | name
===+=================
1 | foo, bar, foobar
2 | foo, bar, foobar
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…