8000 Feat: #176 · FX-Max/leetcode@59985f8 · GitHub
[go: up one dir, main page]

Skip to content

Commit 59985f8

Browse files
committed
Feat: #176
Close:#176
1 parent bdd6a84 commit 59985f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

problems/database/176.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
需要找出表中第二高的薪水,可以考虑先找出最高的薪水,再从表中找出小于最高薪水剩余部分中最高的薪水,即为第二高薪水。
66

77
## 代码
8-
```
8+
```sql
99
# Write your MySQL query statement below
1010
select max(e1.Salary) as SecondHighestSalary
1111
from Employee e1

0 commit comments

Comments
 (0)
0