希望你们一切顺利。
我想展示每周(从8月1号到8月1号)收入较高的十大收入者,并展示下周(8月1号到8月1号)的十大收入者,以此类推。$top_user = $conn->prepare('SELECT user_id, SUM(credit) AS total_sum FROM transactions) GROUP BY user_id ORDER BY total_sum DESC LIMIT 10');
$top_user->execute();
$top_user->bind_result($top_user_id, $top_user_credit);
$top_user->fetch();
$top_user->close();
下面是包含数据的mysql模式id credit user_id created_at
1 200 5 2020-07-07 20:51:21
2 500 5 2020-07-07 20:57:16
3 700 11 2020-07-08 22:15:47
4 300 12 2020-09-08 22:15:47
预期产出Rank Member Income
1 Peter 700.00
2 David 700.00
3 Linda 300.00
So on till 10 and show it every week with top 10 new high earner
PS:我得到了预期的产出,但不知道如何每周都得到新的结果。。。默认情况下显示全时高收益。