Print ID and NAME of each three highest scoring students

前端 未结 0 1698
温柔的废话
温柔的废话 2021-01-25 23:16
select id , name from student order by score distinct limit (0, 3) desc;

+----+-------+-------+
| id | name  | score |
+----+-------+-------+
|  1 | Bob   |    50 |
|           


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题