我有一个游戏的高分数据库,可以跟踪不同世界的每场比赛。我想做的是找出一些关于戏剧的统计数据,然后找到每个世界根据彼此的世界“排名”的位置(按播放次数排序)。
到目前为止,我的所有统计数据都运行良好,但是在查找每个世界的排名时遇到了问题。
我也很确定在三个单独的查询中执行此操作可能是一种非常缓慢的方法,并且可能会得到改进。
我有一个时间戳列(此处未使用)和数据库模式中索引的“世界”列。这是我的来源的选择:
function getStast($worldName) {
// ## First find the number of wins and some other data:
$query = "SELECT COUNT(*) AS total,
AVG(score) AS avgScore,
SUM(score) AS totalScore
FROM highscores
WHERE world = '$worldName'
AND victory = 1";
$win = $row['total'];
// ## Then find the number of losses:
$query = "SELECT COUNT(*) AS total
FROM highscores
WHERE world = '$worldName'
AND victory = 0";
$loss = $row['total'];
$total = $win + $loss;
// ## Then find the rank (this is the broken bit):
$query="SELECT world, count(*) AS total
FROM highscores
WHERE total > $total
GROUP BY world
ORDER BY total DESC";
$rank = $row['total']+1;
// ## ... Then output things.
}
我相信让我失败的特定代码行在 RANK 查询中,
WHERE total > $total
它是否不起作用,因为它不能接受计算的总数作为 WHERE 子句中的参数?
最后,有没有更有效的方法在单个 SQL 查询中计算所有这些?