Skip to content

Commit b7d1638

Browse files
committed
fix: optimize
1 parent f3f7329 commit b7d1638

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

solution/1900-1999/1939.Users That Actively Request Confirmation Messages/README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,7 @@ Result table
8888
<!-- 这里可写当前语言的特殊实现逻辑 -->
8989

9090
```sql
91-
SELECT DISTINCT
92-
c1.user_id AS user_id
91+
SELECT DISTINCT user_id
9392
FROM
9493
Confirmations AS c1
9594
JOIN Confirmations AS c2 USING (user_id)

solution/1900-1999/1939.Users That Actively Request Confirmation Messages/README_EN.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,7 @@ User 7 requested two messages within 24 hours and 1 second of each other, so we
9191
### **SQL**
9292

9393
```sql
94-
SELECT DISTINCT
95-
c1.user_id AS user_id
94+
SELECT DISTINCT user_id
9695
FROM
9796
Confirmations AS c1
9897
JOIN Confirmations AS c2 USING (user_id)

solution/1900-1999/1939.Users That Actively Request Confirmation Messages/Solution.sql

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
SELECT DISTINCT
2-
c1.user_id AS user_id
1+
SELECT DISTINCT user_id
32
FROM
43
Confirmations AS c1
54
JOIN Confirmations AS c2 USING (user_id)

0 commit comments

Comments
 (0)