如何使用 MySQL 查询文章及其最新的 5 条评论?
java mysql 查询文章及其最近 5 条评论
需求是查询文章列表,每个文章展示其最近 5 条评论。数据存储在两个表中:
article 表: id, content comment 表: id, pid, comment
可以使用 left join 查询实现,但它会返回所有评论。为了限制评论数量为 5 条,需要一个子查询来筛选只包含特定数量评论的文章。
sql 查询
select tmp1.id, tmp1.content, tmp.comment from (select a.pid, a.comment from `comment` a where 5 > (select count(id) from `comment` b where b.pid = a.pid and a.id > b.id) order by a.id desc) tmp join article tmp1 on tmp.pid = tmp1.id
核心子查询
3 > (select count(id) from `comment` b where b.pid = a.pid and a.id > b.id)
此子查询检查是否存在多于 5 条较新评论。如果存在,则从结果中排除该评论。它通过检查当前评论的 id 是否大于任何后续评论的 id 来实现。
按最新评论排序
order by 子句确保评论按从最新到最旧的顺序排序。
结果
执行此查询将返回具有限制评论数量(5 条)的文章列表。
最新 3 条评论的变体
若要查询最新的 3 条评论,可以使用以下变体:
WHERE 3 > (SELECT COUNT(id) FROM `comment` b WHERE b.pid = a.pid AND a.id <p>此变体通过检查当前评论的 id 是否小于任何较旧评论的 id 来筛选评论。</p>
以上就是如何使用 MySQL 查询文章及其最新的 5 条评论?的详细内容,更多请关注其它相关文章!