Getting PHP MYSQL ranking query to rank based on total sum of score

后端 未结 2 764
你的背包
你的背包 2020-12-22 06:57
CREATE TABLE `players` (
 `pid` int(2) NOT NULL AUTO_INCREMENT,
 `name` varchar(50) NOT NULL,
`score` int(2) NOT NULL,
`game` varchar(20) NOT NULL,
PRIMARY KEY (`pid         


        
2条回答
  •  旧巷少年郎
    2020-12-22 07:57

    You want to use a group by statement rather than a subselect to solve this particular type of problem.

提交回复
热议问题