+ 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 Answers
+ 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;