方法一:

思路: 先子查询查询出倒数第三的时间 (需要 distinct 去重)

补充: LIMIT 第一个参数指定第一个返回记录行的偏移量,第二个参数指定返回记录行的最大数目,初始记录行的偏移量是 0

代码:

select
    *
from
    employees
where
    hire_date = (
        select distinct
            hire_date
        from
            employees
        order by
            hire_date desc
        limit
            2, 1
    )