sql查询排行10到20的所有数据

比如一个乱序的成绩表,提取成绩排名10到20的学生的所有数据
2024年11月29日 21:35
有1个网友回答
网友(1):

你好,排序后再提取 (设有表table, 其中有字段id, score):
select * from table

order by score
limit 9, 10;