如果取前三名的分数
select score from table order by score asc limit 0,3
如果取前三名的学生 *注意:可能存在第三名的分数等于第四名
select score from table order by score asc limit 2,1 //取到第三名的分数
select name from table where score>=(select score from table order by score asc limit 2,1)