GROUP_CONCAT useful GROUP BY extension
(There is an updated version of this post here)
MySQL has useful extention to the GROUP BY operation: function GROUP_CONCAT:
GROUP_CONCAT(expr) – This function returns a string result with the concatenated non-NULL values from a group.
Where it can be useful?
(more…)