+ 1
Where is the error?
There are 6 players in the players' table, sort the player by their losses and limit to 3 players. Select * from players Order by losses Limit 3;
4 Réponses
+ 2
do you need to sort in descending (highest to lowest) order? if you do, you will need to add “desc” after “order by losses”. that line will look like “order by losses desc”.
+ 1
Show as your attempt and then it will be easy for solving
https://www.sololearn.com/discuss/333866/?ref=app
+ 1
Post your code here
+ 1
SELECT *
FROM players
ORDER BY losses
Limit 3;