SELECT * FROM employees WHERE hire_date = ( SELECT DISTINCT hire_date FROM employees ORDER BY hire_date DESC -- 倒序 LIMIT 1 OFFSET 2 -- 去掉排名倒数第一第二的时间,取倒数第三 ); limit与offset的用法: (1)limit y offset x 表示: 跳过 x 条数据,读取 y 条数据 (2)limit y 表示: 读取 y 条数据 (3)limit x, y 表示: 跳过 x...