If I have per example the following table
cliente.nome
peter sampras
john mark
monalisa
the result with
GROUP_CONCAT(DISTINCT cliente.nome ORDER BY cliente.nome SEPARATOR ', ') as client
will be:
peter sampras,john mark,monalisa
Is possible to limit the length of each item so the result is:
pete,john,mona