前提
mysql必须有以下配置
binlog_format = row
binlog_row_image = full # 默认是full
实战
假设有一张用户表,结构如下
create table tb_user
(
id bigint primary key not null auto_increment,
username varchar(100) not null,
pwd varchar(100) not null,
sex varchar(10) not null
);
大约 2 分钟