上传者: 38612304
|
上传时间: 2021-10-27 12:08:42
|
文件大小: 47KB
|
文件类型: -
前言
MySql 在存在主键冲突或唯一键冲突的情况下,根据插入方式,一般有以下三种插入方式避免错误。
insert ignore。
replace into
insert on duplicate key update
insert ignore
insert ignore 会忽视数据库中已经存在的数据,根据主键或者唯一索引判断,如果数据库没有数据,就会插入新的数据,如果有数据的话就跳过这条数据
小case
表结构
root:test> show create table t3G
*************************** 1. row *************