Skip to content

Commit edbe84c

Browse files
committed
auto commit
1 parent e6c3bf0 commit edbe84c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/notes/Leetcode-Database 题解.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -902,7 +902,7 @@ ORDER BY
902902
| 3 | 4.2 | 3 | 4.2 |
903903
| 3 | 4.2 | 2 | 4.1 |
904904
| 1 | 4.1 | 3 | 4.2 |
905-
| 1 | 4.1 | 2 | 4.3 |
905+
| 1 | 4.1 | 2 | 4.2 |
906906
| 1 | 4.1 | 1 | 4.1 |
907907

908908
我们想要的结果是,把分数相同的放在同一个排名,并且相同分数只占一个位置,例如上面的分数,Id=2 和 Id=3 的记录都有相同的分数,并且最高,他们并列第一。而 Id=1 的记录应该排第二名,而不是第三名。所以在进行 COUNT 计数统计时,我们需要使用 COUNT( DISTINCT S2.score ) 从而只统计一次相同的分数。

notes/Leetcode-Database 题解.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -902,7 +902,7 @@ ORDER BY
902902
| 3 | 4.2 | 3 | 4.2 |
903903
| 3 | 4.2 | 2 | 4.1 |
904904
| 1 | 4.1 | 3 | 4.2 |
905-
| 1 | 4.1 | 2 | 4.3 |
905+
| 1 | 4.1 | 2 | 4.2 |
906906
| 1 | 4.1 | 1 | 4.1 |
907907

908908
我们想要的结果是,把分数相同的放在同一个排名,并且相同分数只占一个位置,例如上面的分数,Id=2 和 Id=3 的记录都有相同的分数,并且最高,他们并列第一。而 Id=1 的记录应该排第二名,而不是第三名。所以在进行 COUNT 计数统计时,我们需要使用 COUNT( DISTINCT S2.score ) 从而只统计一次相同的分数。

0 commit comments

Comments
 (0)