MySQL select:同一相册中最多 3 张照片

发布于 2024-09-05 09:18:03 字数 298 浏览 0 评论 0原文

我有一个具有下一个结构的表:

`id` (int), `album_id` (int), `photo_id` (int), `date_added` (int)

接下来的任务是:我必须从此表中选择 100 张照片,按 date_added 排序,并且复杂性在于我可以从同一个相册中选择最多 3 张图片。 也就是说,我可以在此选择中从一张相册中选择一张、两张或三张照片。我如何才能更优化地执行查询?我必须使用什么样的 mysql 函数?

I have table with next structure:

`id` (int), `album_id` (int), `photo_id` (int), `date_added` (int)

The task is next: I must select 100 photos from this table, ordered by date_added and intricacy in that I could select maximum 3 picture from the same album.
That is I could select one, two or three photos from one album in this selection. How I could perform query this more optimized? What kind of mysql functions I must use?

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

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

发布评论

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

评论(1

倾城泪 2024-09-12 09:18:03

怎么样类似的事情

SELECT  *
FROM    album_photos ap
WHERE   ap.id IN    (
                        SELECT  id 
                        FROM    album_photos 
                        WHERE   album_id = ap.album_id 
                        ORDER BY    date_added DESC 
                        LIMIT 3
                    )
LIMIT 100

Houw about something like

SELECT  *
FROM    album_photos ap
WHERE   ap.id IN    (
                        SELECT  id 
                        FROM    album_photos 
                        WHERE   album_id = ap.album_id 
                        ORDER BY    date_added DESC 
                        LIMIT 3
                    )
LIMIT 100
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文