56,940
社区成员




SELECT a.content, a.postdate, c.username
FROM 表1 a INNER JOIN 表2 b ON a.uid = b.uid
INNER JOIN 表3 c ON a.uid = c.uid
where 2>(select count(*) from 表1 where uid=a.uid and postdate>a.postdate)
ORDER BY username, postdate DESC
LIMIT 50