Mysql - get multiple values at once - group_concat

Tagged:  

If you want to get values for a column in one field of a return result row, you can always use group_concat

You can find some examples here and here like:

SELECT id,GROUP_CONCAT(client_id) FROM services WHERE id = 3 GROUP BY id;