Hi, I would like to write a mysql query to select all the records from a table Which is grouped by one field but all records of another field. Say for example I have a table(RECORD) like this: amount |name 1|jack 2|rose 3|king 2|queen I need to group by "amount " but all records of "name" I need the result like this 1|jack 2|rose,queen 3|king How to do this? Please HELP....