Entonces hazlo así:
Código SQL:
Ver originalSELECT
t.id,
t.catid,
t.name,
t.userid,
t.subject
FROM
(
SELECT id,
catid,
name,
userid,
subject
FROM mensajes
GROUP BY thread
)t
ORDER BY t.id DESC
LIMIT 6;
PD: podrías poner el enlace donde el manual oficial dice eso?