gpt4 book ai didi

PHP SQL 用户分组

转载 作者:太空宇宙 更新时间:2023-11-03 10:54:11 26 4
gpt4 key购买 nike

我有一个游戏,我将每个点保存给每个玩家。现在我想建立一个 highscore,它列出了得分最高的玩家。但我只希望每个玩家的最高分可见。

例如:

David 38 points
Elin 25 points
Kelly 3 points

而不是:

David 38 points
David 35 points
Elin 25 points
Elin 23 points
Elin 20 points
etc etc

我今天的代码:

$sql="select userID, poang from floppy ORDER BY poang DESC  LIMIT 10"; 
$result=mysql_query($sql) or die(mysql_error()."<br />".$sql);
while($row = mysql_fetch_array($result)){
echo $row[userID]." ".$row['poang']." points<br />";
}

有人知道怎么做吗?

最佳答案

SELECT TOP 10 userID, MAX(poang) from floppy GROUP BY userID ORDER BY MAX(poang) DESC

关于PHP SQL 用户分组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22038395/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com