I am wondering if it is possible to select a number of rows in a mysql table but display them all as one value separated by commas for instance.
So if I had a table
Name Color
---------------------
A Red
B Blue
A Green
I could select Color where Name = 'A'; but both values into one such as it would return
Red, Green
or
Green, Red
Instead of
Red
Green
Thanks