MySQL实现两张表数据的同步
程序员文章站
2023-12-17 12:42:34
mysql通过触发器实现两个表的同步,需要了解的朋友可以看一下。
有两张表a和b,要求往a里面插入一条记录的同时要向b里面也插入一条记录,向b里面插入一条记录的同时...
mysql通过触发器实现两个表的同步,需要了解的朋友可以看一下。
有两张表a和b,要求往a里面插入一条记录的同时要向b里面也插入一条记录,向b里面插入一条记录的同时也向a插入一条记录。两张表的结构不同,需要将其中几个字段对应起来。可以用下面的触发器实现。
表a的触发器:
begin set @disable=1; if @disable=1 and not exists(select 1 from tableb where id=new.id) then insert into tableb (id,对应字段1) values(new.id,new.对应字段1); end if; set @disable=0; end
表b的触发器:
begin set @disable=1; if @disable=1 and not exists(select 1 from tablea where id=new.id) then insert into tablea (id,对应字段1) values(new.id,new.对应字段1); end if; set @disable=0; end
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。