学习记录570@MySQL查询部门工资前三高的所有员工
表结构Create table If Not Exists Employee (id int, name varchar(255), salary int, departmentId int)Create table If Not Exists Department (id int, name varchar(255))insert into Employee (id, name, salary, departmentId) values ('1', 'Joe', '85000', '1')inse