Skip to content

Commit cc95085

Browse files
committed
auto commmit
1 parent e3793d4 commit cc95085

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/notes/Leetcode-Database 题解.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -827,7 +827,7 @@ https://leetcode.com/problems/rank-scores/description/
827827
| 2 | 4.2 | 2 | 2 |
828828
| 3 | 4.3 | 1 | 1 |
829829

830-
使用连接操作找到某个 score 对应的大于其值的记录
830+
使用连接操作找到某个 score 对应的大于等于其值的记录
831831

832832
```sql
833833
SELECT
@@ -890,7 +890,7 @@ ORDER BY
890890
| score | Rank |
891891
| :---: | :--: |
892892
| 4.2 | 1 |
893-
| 4.2 | 2 |
893+
| 4.2 | 1 |
894894
| 4.1 | 2 |
895895

896896
连接情况如下:

notes/Leetcode-Database 题解.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -827,7 +827,7 @@ https://leetcode.com/problems/rank-scores/description/
827827
| 2 | 4.2 | 2 | 2 |
828828
| 3 | 4.3 | 1 | 1 |
829829

830-
使用连接操作找到某个 score 对应的大于其值的记录
830+
使用连接操作找到某个 score 对应的大于等于其值的记录
831831

832832
```sql
833833
SELECT
@@ -890,7 +890,7 @@ ORDER BY
890890
| score | Rank |
891891
| :---: | :--: |
892892
| 4.2 | 1 |
893-
| 4.2 | 2 |
893+
| 4.2 | 1 |
894894
| 4.1 | 2 |
895895

896896
连接情况如下:

0 commit comments

Comments
 (0)