diff --git a/docs/notes/Leetcode-Database 题解.md b/docs/notes/Leetcode-Database 题解.md index ec1e31af..b62acfbe 100644 --- a/docs/notes/Leetcode-Database 题解.md +++ b/docs/notes/Leetcode-Database 题解.md @@ -827,7 +827,7 @@ https://leetcode.com/problems/rank-scores/description/ | 2 | 4.2 | 2 | 2 | | 3 | 4.3 | 1 | 1 | -使用连接操作找到某个 score 对应的大于其值的记录: +使用连接操作找到某个 score 对应的大于等于其值的记录: ```sql SELECT @@ -890,7 +890,7 @@ ORDER BY | score | Rank | | :---: | :--: | | 4.2 | 1 | -| 4.2 | 2 | +| 4.2 | 1 | | 4.1 | 2 | 连接情况如下: diff --git a/notes/Leetcode-Database 题解.md b/notes/Leetcode-Database 题解.md index ec1e31af..b62acfbe 100644 --- a/notes/Leetcode-Database 题解.md +++ b/notes/Leetcode-Database 题解.md @@ -827,7 +827,7 @@ https://leetcode.com/problems/rank-scores/description/ | 2 | 4.2 | 2 | 2 | | 3 | 4.3 | 1 | 1 | -使用连接操作找到某个 score 对应的大于其值的记录: +使用连接操作找到某个 score 对应的大于等于其值的记录: ```sql SELECT @@ -890,7 +890,7 @@ ORDER BY | score | Rank | | :---: | :--: | | 4.2 | 1 | -| 4.2 | 2 | +| 4.2 | 1 | | 4.1 | 2 | 连接情况如下: