Skip to content

Commit ccc0475

Browse files
committed
Update source links in latest TIL
1 parent cc2d84a commit ccc0475

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mysql/ignore-duplicates-when-inserting-records.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ insert ignore into MerchantAccount (col1, col2, col3)
2222
```
2323

2424
Notice all I had to do was update the statment by adding `ignore` right after
25-
`insert.`
25+
[`insert`](https://dev.mysql.com/doc/refman/8.0/en/insert.html).
2626

2727
> If you use the `IGNORE` modifier, ignorable errors that occur while executing
2828
> the `INSERT` statement are ignored. For example, without `IGNORE`, a row that
@@ -31,4 +31,4 @@ Notice all I had to do was update the statment by adding `ignore` right after
3131
> row is discarded and no error occurs. Ignored errors generate warnings
3232
> instead.
3333
34-
[source](https://dev.mysql.com/doc/refman/8.0/en/insert.html)
34+
[source](https://dev.mysql.com/doc/refman/8.0/en/sql-mode.html#ignore-effect-on-execution)

0 commit comments

Comments
 (0)