我正在使用 mybb,如何找到当前读者最多的前 5 个主题?
我正在使用 MyBB,我想在我的网站主页上显示当前拥有最多读者的主题强>。
我假设我必须查询会话表,但我不知道该怎么做
我需要的 mysql 结果应该类似于:
-------------------------
|title | count |
-------------------------
|thread a title | 1234 |
|thread b title | 913 |
|thread c title | 678 |
|another title | 593 |
|different title| 550 |
-------------------------
谢谢:)
I'm using MyBB, I want to show on my website homepage the threads that has the most readers currently.
I'm assuming I have to query the session table but I'm not sure how should I do it
The mysql result I need, should look something like:
-------------------------
|title | count |
-------------------------
|thread a title | 1234 |
|thread b title | 913 |
|thread c title | 678 |
|another title | 593 |
|different title| 550 |
-------------------------
Thank you :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我刚刚在我的板上进行了测试,我认为这就是您所需要的:
I've just tested that on my board, I think this is what you need: