Skip to content

Commit 98e26cf

Browse files
committed
leetcode 180~183
1 parent e66c6e8 commit 98e26cf

File tree

12 files changed

+33
-16
lines changed

12 files changed

+33
-16
lines changed

solution/0100-0199/0180.Consecutive Numbers/README.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,9 @@
3939
### **SQL**
4040

4141
```
42-
42+
select distinct(Num) as ConsecutiveNums from Logs Curr where
43+
Num = (select Num from Logs where id = Curr.id - 1) and
44+
Num = (select Num from Logs where id = Curr.id - 2)
4345
```
4446

45-
<!-- tabs:end -->
47+
<!-- tabs:end -->

solution/0100-0199/0180.Consecutive Numbers/README_EN.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,9 @@
6464
### **SQL**
6565

6666
```
67-
67+
select distinct(Num) as ConsecutiveNums from Logs Curr where
68+
Num = (select Num from Logs where id = Curr.id - 1) and
69+
Num = (select Num from Logs where id = Curr.id - 2)
6870
```
6971

70-
<!-- tabs:end -->
72+
<!-- tabs:end -->
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
select distinct(Num) as ConsecutiveNums from Logs Curr where
2+
Num = (select Num from Logs where id = Curr.id - 1) and
3+
Num = (select Num from Logs where id = Curr.id - 2)

solution/0100-0199/0181.Employees Earning More Than Their Managers/README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@
3636
### **SQL**
3737

3838
```
39-
39+
select Name as Employee from Employee Curr where
40+
Salary > (select Salary from Employee where Id = Curr.ManagerId)
4041
```
4142

42-
<!-- tabs:end -->
43+
<!-- tabs:end -->

solution/0100-0199/0181.Employees Earning More Than Their Managers/README_EN.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@
5858
### **SQL**
5959

6060
```
61-
61+
select Name as Employee from Employee Curr where
62+
Salary > (select Salary from Employee where Id = Curr.ManagerId)
6263
```
6364

64-
<!-- tabs:end -->
65+
<!-- tabs:end -->
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
select Name as Employee from Employee Curr where
2+
Salary > (select Salary from Employee where Id = Curr.ManagerId)

solution/0100-0199/0182.Duplicate Emails/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
### **SQL**
4040

4141
```
42-
42+
select Email from Person group by Email having count(Email) > 1
4343
```
4444

45-
<!-- tabs:end -->
45+
<!-- tabs:end -->

solution/0100-0199/0182.Duplicate Emails/README_EN.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
### **SQL**
6161

6262
```
63-
63+
select Email from Person group by Email having count(Email) > 1
6464
```
6565

66-
<!-- tabs:end -->
66+
<!-- tabs:end -->
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
select Name as Employee from Employee Curr where
2+
Salary > (select Salary from Employee where Id = Curr.ManagerId)

solution/0100-0199/0183.Customers Who Never Order/README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,8 @@
4949
### **SQL**
5050

5151
```
52-
52+
select Name as Customers from Customers
53+
where id not in (select CustomerId from Orders)
5354
```
5455

55-
<!-- tabs:end -->
56+
<!-- tabs:end -->

solution/0100-0199/0183.Customers Who Never Order/README_EN.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,8 @@
8686
### **SQL**
8787

8888
```
89-
89+
select Name as Customers from Customers
90+
where id not in (select CustomerId from Orders)
9091
```
9192

92-
<!-- tabs:end -->
93+
<!-- tabs:end -->
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
select Name as Customers from Customers
2+
where id not in (select CustomerId from Orders)

0 commit comments

Comments
 (0)