gpt4 book ai didi

php - 热门用户 -> 评论 -> php

转载 作者:行者123 更新时间:2023-11-29 05:42:21 26 4
gpt4 key购买 nike

我有一个 users 表和一个 comments 表,我想从 users 中选择评论表中有大量评论的顶级用户,并按评论数排序

表结构

用户

id | username | password

评论

id | text | author_username

最佳答案

使用以下 MySQL 语句列出评论最多的用户。 CommentCount 告诉您特定用户发表的评论数。

SELECT
users.username,
COUNT(comments.id) AS CommentCount
FROM
users
INNER JOIN comments ON users.id = comments.author_userid
GROUP BY
users.username
ORDER BY
COUNT(comments.id) DESC

请注意,您必须先将 author_userid 更改为 author_username!

关于php - 热门用户 -> 评论 -> php,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5782765/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com