您好,登錄后才能下訂單哦!
這篇文章主要介紹“mysql中insert ignore、insert和replace的區別是什么”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“mysql中insert ignore、insert和replace的區別是什么”文章能幫助大家解決問題。
指令 | 已存在 | 不存在 | 舉例 |
---|---|---|---|
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); |
表要求:有PrimaryKey,或者unique索引
結果:表id都會自增
創建表
CREATE TABLE names( id INT(10) PRIMARY KEY AUTO_INCREMENT, name VARCHAR(255) UNIQUE, age INT(10) )
插入數據
mysql> insert into names(name, age) values("小明", 24); mysql> insert into names(name, age) values("大紅", 24); mysql> insert into names(name, age) values("大壯", 24); mysql> insert into names(name, age) values("秀英", 24); mysql> select * from names; +----+--------+------+ | id | name | age | +----+--------+------+ | 1 | 小明 | 24 | | 2 | 大紅 | 24 | | 3 | 大壯 | 24 | | 4 | 秀英 | 24 | +----+--------+------+
插入已存在, id會自增,但是插入不成功,會報錯
mysql> insert into names(name, age) values("小明", 23); ERROR 1062 (23000): Duplicate entry '小明' for key 'name'
已存在替換,刪除原來的記錄,添加新的記錄
mysql> replace into names(name, age) values("小明", 23); Query OK, 2 rows affected (0.00 sec) mysql> select * from names; +----+--------+------+ | id | name | age | +----+--------+------+ | 2 | 大紅 | 24 | | 3 | 大壯 | 24 | | 4 | 秀英 | 24 | | 6 | 小明 | 23 | +----+--------+------+
不存在替換,添加新的記錄
mysql> replace into names(name, age) values("大名", 23); Query OK, 1 row affected (0.00 sec) mysql> select * from names; +----+--------+------+ | id | name | age | +----+--------+------+ | 2 | 大紅 | 24 | | 3 | 大壯 | 24 | | 4 | 秀英 | 24 | | 6 | 小明 | 23 | | 7 | 大名 | 23 | +----+--------+------+
插入已存在,忽略新插入的記錄,id會自增,不會報錯
mysql> insert ignore into names(name, age) values("大壯", 25); Query OK, 0 rows affected, 1 warning (0.00 sec)
插入不存在,添加新的記錄
mysql> insert ignore into names(name, age) values("壯壯", 25); Query OK, 1 row affected (0.01 sec) mysql> select * from names; +----+--------+------+ | id | name | age | +----+--------+------+ | 2 | 大紅 | 24 | | 3 | 大壯 | 24 | | 4 | 秀英 | 24 | | 6 | 小明 | 23 | | 7 | 大名 | 23 | | 10 | 壯壯 | 25 | +----+--------+------+
關于“mysql中insert ignore、insert和replace的區別是什么”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。