修改replace into特性的功能描述信息

Signed-off-by: zong <zw_giles@163.com>
This commit is contained in:
zong
2022-09-26 08:30:09 +00:00
committed by Gitee
parent c863dce700
commit 0f9dbca9ed

View File

@ -23,7 +23,7 @@ REPLACE [LOW_PRIORITY | DELAYED]
[INTO] tbl_name [(col_name,...)]
SELECT...
REPLACE works exactly like INSERT, except that if an old row in the table has the same value as a new row for a PRIMARY KEY or a UNIQUE index, the old row is deleted before the new row is inserted.
REPLACE delete the old rows when the new row conflict with the old row which contains PRIMARY KEY or a UNIQUE index, and then insert the new row.
</synopsis>
</refsynopsisdiv>