关于:MySQL ORDER BY Customized
我还有一个问题。我们有一个id_competitor
不同的分数。
id_competitor score
1 WIN
2 50+
3 90+
4 90+
1 50
2 WIN
3 40
4 40+
我想使用order by
,但按以下顺序:
id_competitor
2
1
4
3
我不知道我应该怎么做SELECT DISTINCT with ORDER BY or GROUP BY