Skip to content

Commit

Permalink
Update dev-guide-update-data.md to fix a Chinese grammar problem (#16857
Browse files Browse the repository at this point in the history
) (#16860)
  • Loading branch information
ti-chi-bot authored Mar 21, 2024
1 parent 75e6d9f commit a06f0ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion develop/dev-guide-update-data.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ INSERT INTO {table} ({columns}) VALUES ({values})

### `INSERT ON DUPLICATE KEY UPDATE` 最佳实践

- 在仅有一个唯一键的表上使用 `INSERT ON DUPLICATE KEY UPDATE`。此语句在检测到任何 **_唯一键_** (包括主键) 冲突时,将更新数据。在不止匹配到一行冲突时,将只会一行数据。因此,除非能保证仅有一行冲突,否则不建议在有多个唯一键的表中使用 `INSERT ON DUPLICATE KEY UPDATE` 语句。
- 在仅有一个唯一键的表上使用 `INSERT ON DUPLICATE KEY UPDATE`。此语句在检测到任何 **_唯一键_** (包括主键) 冲突时,将更新数据。在不止匹配到一行冲突时,将只会更新一行数据。因此,除非能保证仅有一行冲突,否则不建议在有多个唯一键的表中使用 `INSERT ON DUPLICATE KEY UPDATE` 语句。
- 在创建或更新的场景中使用此语句。

### `INSERT ON DUPLICATE KEY UPDATE` 例子
Expand Down

0 comments on commit a06f0ce

Please sign in to comment.