返回第二大的记录,没有返回null

力扣:第二高薪水 https://leetcode-cn.com/problems/second-highest-salary/ 

 

SELECT
    (SELECT 
            Salary
        FROM
            Employee
        ORDER BY Salary DESC
        LIMIT 1 OFFSET 1) AS SecondHighestSalary
;

使用子查询 是为了在没有查询记录的时候返回 null, 而不是空记录 

limit  m offset n 表示 跳过n条记录 取m条记录 , 等同于 limit n, m 的写法

上一篇:指针偏移


下一篇:标识符