gpt4 book ai didi

mysql - 计算转发的推文数量和已转发的推文总数

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

考虑下表

users                                tweets
--------------------------------- ---------------------------
user_id num_retweets sum_retweets tweet_id user_id retweeted
--------------------------------- ---------------------------
1 1 1 3
2 2 1 0
3 3 1 4
4 2 0
5 2 0
6 3 1
7 3 2
8 3 0

我想统计num_retweets:用户撰写已转发推文的次数和sum_retweets:用户所有推文被转发的次数被转发。 UPDATE 查询后预期的 users 表为:

users
---------------------------------
user_id num_retweets sum_retweets
---------------------------------
1 2 7 <-- 3 + 4
2 0 0
3 2 3 <-- 1 + 2

对于构建这两个查询的任何帮助,我们将不胜感激:-)我一直在跨表执行UPDATE时遇到问题。

最佳答案

UPDATE
USERS u
JOIN (
SELECT
tweets.user_id,
COUNT(IF(tweets.retweeted > 0, 1, null)) as num_retweets,
SUM(tweets.retweeted) as sum_retweets
FROM tweets
GROUP BY tweets.user_id
) as t ON t.user_id = u.user_id
SET u.num_retweets = t.num_retweets, u.sum_retweets = t.sum_retweets

关于mysql - 计算转发的推文数量和已转发的推文总数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11657124/

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