【发布时间】:2013-02-09 23:38:06
【问题描述】:
我有这两个问题:
$sql = "SELECT SUM(points) as userpoints FROM ".$prefix."_publicpoints
WHERE date BETWEEN ? AND ? AND fk_player_id = ?";
// Getting the users points into a variable to use in the next query
$userPoints;
$getuserplacement = "SELECT fk_player_id FROM ".$prefix."_publicpoints
WHERE date BETWEEN ? AND ?
GROUP BY fk_player_id
HAVING SUM(points) > $userPoints";
// After this I count the rows I get and put that into a variable and thats the users Rank
$userRank = $stmt->num_rows + 1;
这给了我这些数字:点数:-178 位置:1891
然后我尝试了 Ivan 的示例:
$sql= "SELECT fk_player_id FROM ".$prefix."_publicpoints
WHERE date BETWEEN ? AND ?
GROUP BY fk_player_id
HAVING SUM(points) > (
SELECT SUM(points) as userpoints FROM ".$prefix."_publicpoints
WHERE date BETWEEN ? AND ? AND fk_player_id = ?
)";
if($stmt->prepare($sql)){
$stmt->bind_param('ssssi',$yearFrom,$yearTo,$yearFrom,$yearTo,$playerid);
$stmt->execute();
$stmt->store_result();
$userMrank = $stmt->num_rows;
if (!$stmt->execute()) {
echo "Execute failed: (" . $stmt->errno . ") " . $stmt->error;
}
$stmt->bind_result($userPoints);
$stmt->fetch();
}
这给了我这些数字:点数:3 位置:0
是否可以将这两个查询合并为一个?
希望得到帮助:-)
【问题讨论】:
-
您的编辑后我无法理解您的问题,哪两个是查询?
-
抱歉,再次编辑了我的帖子:-/
-
为什么要合并它们?
-
优化同一张表只有一次查询。
标签: php mysqli query-optimization