本题考察知识点limit x,y(跳过x条数据,取y条数据) 或 limit y offset x (跳过x条数据,取y条数据)
select * 
from employees
limit 5,5;

select * 
from employees
limit 5
offset 5;