💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
## 9、取得薪水最高的前五名员工 ![](https://img.kancloud.cn/f5/1d/f51da205b1abf9724831c1bd795236dd_265x173.png) 思路 1.根据工资进行降序排列 select * from emp order by sal desc 2.在步骤1的基础上获取前5条记录 select * from emp order by sal desc limit 0,5