gpt4 book ai didi

mysql - 我正在使用 mybb,如何找到当前拥有最多读者的前 5 个线程?

转载 作者:可可西里 更新时间:2023-11-01 07:33:33 25 4
gpt4 key购买 nike

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

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

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

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

谢谢你:)

最佳答案

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

SELECT COUNT(*) as count, subject as title
FROM `mybb_sessions`,`mybb_threads`
WHERE location1 = tid
GROUP BY `location1`
ORDER BY COUNT(*) DESC
LIMIT 10

关于mysql - 我正在使用 mybb,如何找到当前拥有最多读者的前 5 个线程?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6780529/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com