首页 > 数据库 > MySQL > 正文

MySQL rep!lace into 语句浅析(一)

2019-11-02 15:27:24
字体:
来源:转载
供稿:网友

   这篇文章主要介绍了MySQL replace into 语句浅析(一),本文讲解了replace into的原理、使用方法及使用的场景和使用示例,需要的朋友可以参考下

  一 介绍

  在笔者支持业务过程中,经常遇到开发咨询replace into 的使用场景以及注意事项,这里做个总结。从功能原理,性能和注意事项上做个说明。

  二 原理

  2.1 当表中存在主键但是不存在唯一建的时候。

  表结构

  代码如下:

  CREATE TABLE `yy` (

  `id` bigint(20) NOT NULL,

  `name` varchar(20) DEFAULT NULL,

  PRIMARY KEY (`id`)

  ) ENGINE=InnoDB DEFAULT CHARSET=utf8;

  [email protected] 02:43:58>insert into yy values(1,'abc');

  Query OK, 1 row affected (0.00 sec)

  [email protected] 02:44:25>replace into yy values(2,'bbb');

  Query OK, 1 row affected (0.00 sec)

  [email protected] 02:55:42>select * from yy;

  +----+------+

  | id | name |

  +----+------+

  | 1 | abc |

  | 2 | bbb |

  +----+------+

  2 rows in set (0.00 sec)

  [email protected] 02:55:56>replace into yy values(1,'ccc');

  Query OK, 2 rows affected (0.00 sec)

  如果本来已经存在的主键值,那么MySQL做update操作。

   代码如下:

  ### UPDATE test.yy

  ### WHERE

  ### @1=1 /* LONGINT meta=0 nullable=0 is_null=0 */

  ### @2='abc' /* VARSTRING(60) meta=60 nullable=1 is_null=0 */

  ### SET

  ### @1=1 /* LONGINT meta=0 nullable=0 is_null=0 */

  ### @2='ccc' /* VARSTRING(60) meta=60 nullable=1 is_null=0 */

  如果本来相应的主键值没有,那么做insert 操作 replace into yy values(2,'bbb');

   代码如下:

  ### INSERT INTO test.yy

  ### SET

  ### @1=2 /* LONGINT meta=0 nullable=0 is_null=0 */

  ### @2='bbb' /* VARSTRING(60) meta=60 nullable=1 is_null=0 */

  # at 623

  #140314 2:55:42 server id 136403306 end_log_pos 650 Xid = 6090885569

  2.2 当表中主键和唯一键同时存在时

   代码如下:

  CREATE TABLE `yy` (

  `id` int(11) NOT NULL DEFAULT '0',

  `b` int(11) DEFAULT NULL,

  `c` int(11) DEFAULT NULL

  PRIMARY KEY (`a`),

  UNIQUE KEY

好看的美女搞笑图片[www.62-6.com/1/meinvgaoxiao/]
`uk_bc` (`b`,`c`)

  ) ENGINE=InnoDB DEFAULT CHARSET=utf8

  情形1 主键冲突

  代码如下:

  [email protected] 04:37:18>replace into yy values(1,2,3);

  Query OK, 1 row affected (0.00 sec)

  [email protected] 04:37:37>replace into yy values(2,2,4);

  Query OK, 1 row affected (0.00 sec)

  [email protected] 04:38:05>select * from yy;

  +----+------+------+

  | id | b | c |

  +----+------+------+

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表