🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
## 10、取得薪水最高的第六到第十名员工 ![](https://img.kancloud.cn/c7/ae/c7ae81e289872b421056dcd37b9c6b8f_332x170.png) 思路 1.根据工资进行降序排列 select * from emp order by sal desc 2.在步骤1的基础上获取前6到10的记录 select * from emp order by sal desc limit 5,5