SELECT
userid
,title
,max(money) AS MAXMONEY
FROM
p2p_share_log
GROUP BY userid
ORDER BY MAXMONEY desc
LIMIT 0,10;

打完收工.