From ccc047549b280c134411c5ac2a624976936da5f0 Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Tue, 27 Jun 2023 10:34:08 -0500 Subject: [PATCH] Update source links in latest TIL --- mysql/ignore-duplicates-when-inserting-records.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mysql/ignore-duplicates-when-inserting-records.md b/mysql/ignore-duplicates-when-inserting-records.md index c2ec536..e4a39aa 100644 --- a/mysql/ignore-duplicates-when-inserting-records.md +++ b/mysql/ignore-duplicates-when-inserting-records.md @@ -22,7 +22,7 @@ insert ignore into MerchantAccount (col1, col2, col3) ``` Notice all I had to do was update the statment by adding `ignore` right after -`insert.` +[`insert`](https://dev.mysql.com/doc/refman/8.0/en/insert.html). > If you use the `IGNORE` modifier, ignorable errors that occur while executing > 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 > row is discarded and no error occurs. Ignored errors generate warnings > instead. -[source](https://dev.mysql.com/doc/refman/8.0/en/insert.html) +[source](https://dev.mysql.com/doc/refman/8.0/en/sql-mode.html#ignore-effect-on-execution)