我已经设置了 2 台 MYSQL 服务器:
my.cnf server1:
auto_increment_increment = 2
auto_increment_offset = 1
my.cnf server2:
auto_increment_increment = 2
auto_increment_offset = 2
但是当我从不同的服务器一个一个地插入记录 10 次时:
INSERT INTO `table1` (`id`, `text`) VALUES (NULL, '22222');
结果:
id text
1 22222
2 22222
5 22222
6 22222
9 22222
...
但是我要:
id text
1 22222
2 22222
3 22222
4 22222
5 22222
...
有可能的?