oder ohne GROUP BY?
[sql]SELECT DISTINCT user_id, name FROM tabelle[/sql]
GROUP BY macht imho nur Sinn, wenn man irgendeine Berechnung ausfuehren will, z.B.
[sql]SELECT user_id, count(wert) AS anzahl FROM tabelle GROUP BY user_id[/sql]
oder so\n\n
<!--EDIT|Strat|1083314608-->