• 参考答案
# 方法一:
select * from employees limit 5,5;

# 方法二:
select * from employees limit 5 offset 5;