MySQL插入语句(四种) 总结 指令 已存在 不存在 举例 insert 报错 插入 insert into names(name, age) values(“小明”, 23); insert ignore 忽略 插入 insert ignore into names(name, age) values(“小明”, 24); replace 替换 插入 replace into names(name, age) values(“小明”, 25); insert update 修改 插入 INSERT INTO USER VALUES(1,2) ON DUPLICATE...