From cc95085c41cc5cb79604ac4ee22588824b6c45af Mon Sep 17 00:00:00 2001 From: CyC2018 Date: Mon, 24 Feb 2020 00:46:54 +0800 Subject: [PATCH] auto commmit --- docs/notes/Leetcode-Database 题解.md | 4 ++-- notes/Leetcode-Database 题解.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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 | 连接情况如下: