4

我正在使用MyBB,我想在我的网站主页上显示目前拥有最多读者的主题

我假设我必须查询会话表,但我不确定我应该怎么做

我需要的 mysql 结果应该类似于:

-------------------------
|title          | count |
-------------------------
|thread a title | 1234  |
|thread b title | 913   |
|thread c title | 678   |
|another  title | 593   |
|different title| 550   |
-------------------------

谢谢 :)

4

1 回答 1

4

我刚刚在我的板上测试过,我认为这就是你需要的:

SELECT COUNT(*) as count, subject as title
FROM `mybb_sessions`,`mybb_threads`
WHERE location1 = tid
GROUP BY `location1`
ORDER BY COUNT(*) DESC
LIMIT 10
于 2011-07-21T18:15:56.633 回答