Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit c272c98

Browse files
Update readme
1 parent a3e414e commit c272c98

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

‎README.md‎

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,15 @@ IGNORE 1 LINES
6363
);
6464
```
6565

66+
Since the dataset contains repeated products, remove duplicates as follows:
67+
68+
```sql
69+
DELETE p1
70+
FROM products p1
71+
JOIN products p2 ON p1.title = p2.title
72+
WHERE p1.id > p2.id;
73+
```
74+
6675
Exit the MariaDB client:
6776

6877
```shell

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /