表包含(pid、玩家、排名、月份、季节)
我正在尝试创建一个查询,显示每个玩家,他们玩了哪些月份,他们当月的排名以及当月有多少玩家玩。
这是我正在尝试的
SELECT name as Name
, month as Month
, rank as Rank
, (select count(*) from results where month='month') as TotalPlayers
FROM `results`
WHERE season=CurrentSeason
and name="Player"
我的子查询正在返回第 0 个月的结果。我如何才能得到正确的结果?