Skip to content

Commit ff7ee7c

Browse files
authored
feat: add sql solution to lc problem: No.0584 (#762)
No.0584.Find Customer Referee
1 parent 1319492 commit ff7ee7c

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

solution/0500-0599/0584.Find Customer Referee/README.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,12 @@
4545
### **SQL**
4646

4747
```sql
48-
48+
SELECT
49+
name
50+
FROM
51+
Customer
52+
WHERE
53+
referee_id != 2 OR referee_id IS NULL;
4954
```
5055

5156
<!-- tabs:end -->

solution/0500-0599/0584.Find Customer Referee/README_EN.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,12 @@ Customer table:
6060
### **SQL**
6161

6262
```sql
63-
63+
SELECT
64+
name
65+
FROM
66+
Customer
67+
WHERE
68+
referee_id != 2 OR referee_id IS NULL;
6469
```
6570

6671
<!-- tabs:end -->
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
SELECT
2+
name
3+
FROM
4+
Customer
5+
WHERE
6+
referee_id != 2 OR referee_id IS NULL;

0 commit comments

Comments
 (0)