id | userid | total_points_spent
1 | 1 | 10
2 | 2 | 15
3 | 2 | 50
4 | 3 | 5
5 | 1 | 15
使用上表,我首先要删除userid
保留最大行的重复项total_points_spent
,如下所示:
id | userid | total_points_spent
3 | 2 | 50
4 | 3 | 5
5 | 1 | 15
然后我想对 的值求和total_points_spent
,这将是简单的部分,结果是70
。