select t.topic_oid, t.topic, t.create_date, t.type, t.reply_count, 
t.click_count, u.nick_name
from t_topic as t, t_user as u
where t.user_oid = u.user_oid and t.enabled = 1 and t.topic_oid in(
select topic_oid from t_favorite_topic where user_oid = 1 order by fav_topic_oid limit 0, 20)Error Code : 1235
This version of MySQL doesn't yet support 'LIMIT & IN/ALL/ANY/SOME subquery'
BBS论坛中查询我收藏的帖子(t_favorite_topic),再通过topic_oid把帖子从t_topic中把内容给勾出来。
分页查询如何完成