leetcode刷题MySQL题解二十三
Posted hhh江月
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode刷题MySQL题解二十三相关的知识,希望对你有一定的参考价值。
leetcode刷题mysql题解二十三
题目叙述
表: Followers
±------------±-----+
| Column Name | Type |
±------------±-----+
| user_id | int |
| follower_id | int |
±------------±-----+
(user_id, follower_id) 是这个表的主键。
该表包含一个关注关系中关注者和用户的编号,其中关注者关注用户。
写出 SQL 语句,对于每一个用户,返回该用户的关注者数量。
按 user_id 的顺序返回结果表。
查询结果的格式如下示例所示。
题目解答
# Write your MySQL query statement below
# select user_id, count(follower_id) as followers_count from Followers;
# Write your MySQL query statement below
select
user_id, count(*) as followers_count
from
Followers
group by user_id
order by user_id;
题目运行
以上是关于leetcode刷题MySQL题解二十三的主要内容,如果未能解决你的问题,请参考以下文章