1. mysql 显示前10名发帖最多的用户名字及帖子数量链接
    select uid,count(*) as total from thread group by uid order by total desc limit 10;