作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我如何修改下面的查询以限制从 post_list
表中获取的每个 userid
的行数,而不影响性能脚本(这里的 post_list 表超过 10,000 行)?
$sql = query("SELECT userid, post, post_id, id, username
FROM post_list, users
WHERE post_list.userid = users.id AND post_id%4 = 0
ORDER BY post_id");
我需要每个 post_list.userid 最多有 5 个帖子。
因此,如果我的 post_list 表中有 10 个用户,查询将返回 50 行。
编辑:
用户表
id username
1 bill
2 mark
3 kate
POST_LIST 表
post_id userid post
1 1 foo
2 3 bar
3 3 baz
4 1 qux
5 1 foo_1
6 1 bar_1
7 1 baz_1
8 1 qux_1
在这里,查询应该只返回 Bill 的 5 个帖子。
此外,我需要将总行数限制为 50。
最佳答案
关于mysql - 使用 COUNT 和 HAVING BY 的 SELECT 查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19782254/
我是一名优秀的程序员,十分优秀!