如果取前三名的分數
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)