Mysql 按日期对聚合行进行排序

发布于 2024-11-10 13:00:16 字数 139 浏览 3 评论 0原文

我认为这是一个简单的问题:我只是 php 的新手,无法真正以有效的方式解决这个问题。我想要做的是为每个朋友查询所有帖子并返回按日期排序的单个列表。但它们是两个不同的表,我真的不明白如何用单个语句连接这些表,也不明白这是否是最好的可扩展解决方案。非常感谢帮助! :)

I think this is a simple question: I'm just new to php and can't really figure this out in an efficient way. What I want to do is for each friend, query all the posts and return a single list thats sorted by the date. But they are two different tables and I don't really understand how the tables could be joined with a single statement nor if this is even the best scalable solution. Help is greatly appreciated! :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

薄荷梦 2024-11-17 13:00:16

像这样的东西:

SELECT ...
FROM friends
INNER JOIN posts ON posts.author_id = friends.id
ORDER BY posts.created_at

Something like:

SELECT ...
FROM friends
INNER JOIN posts ON posts.author_id = friends.id
ORDER BY posts.created_at
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文