我有以下两张table:
体育统计:
id team_id game_id points
1 1 1 7
2 2 1 8
3 3 2 6
4 1 2 9
体育统计:
id team_id game_id points
1 1 3 2
2 2 3 1
3 3 4 3
4 1 4 10
我要计算每个队的胜负比。这包括确保从两个运动表中记录胜负,因为我的比赛涉及两个运动。所以我想要的结果如下:
team_id wins loss ratio
1 3 1 3.0
2 1 1 1.0
3 0 2 0.0
我无法用一个查询来概括我将如何做到这一点。
1条答案
按热度按时间afdcj2ne1#
假设没有关系,可以使用窗口函数和
union all
:做了一个小编辑^