Write a SQL query to get the second highest salary from the Employee table.
Id | Salary |
---|---|
1 | 100 |
2 | 200 |
3 | 300 |
For example, given the above Employee table, the second highest salary is 200. If there is no second highest salary, then the query should return null.
描述
查找 Salary
第二大的数,若不存在,则返回 null
代码
1 | -- 方法一 |
1 | -- 方法二 |
1 | -- 方法三 |
1 | -- 方法四 |
延伸
limit 的偏移量
mysql:证明为什么用 limit 时,offset 很大会影响性能
test 表
id | val | source |
---|---|---|
1 | 4 | 4 |
1 | -- 方法一 |