PHP 与MySQL - 基于点击次数和时间的热门链接
目前我正在按总点击次数对热门链接进行排序。但我也有每次访问的时间戳。如何不仅按总点击次数还按时间对链接进行排序,以便仅将最相关的链接显示在顶部?
table link_clicks
-----------------
link_id
link_time
At the moment I am sorting popular links by total clicks. But I also have timestamps for each visit. How can I sort links not only by total clicks but also using time, so only the most relevant are showed at the top?
table link_clicks
-----------------
link_id
link_time
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
GROUP BY
link_id
并在WHERE
子句中使用日期约束:GROUP BY
link_id
and just use a date constraint in yourWHERE
clause: