摘要:
mysql如何建立一个序列?create table t111 (id int auto_increment primary key, //自动增长remark varchar(5...
mysql如何建立一个序列?
create table t111 (id int auto_increment primary key, //自动增长remark varchar(50));不是Oracle一样可以建立sequence。
图片来源:网络
mysql支持序列吗?
没有。不过MySQL支持AUTO_INCREMENT类型,在MySQL 5.0中还可以以此处理多主(multi-master)的复制.通过设置--auto-increment-increment 和 --auto-increment-offset 启动选项,就可以让多个主服务器产生不同的字增值,从而不会产生冲突.--auto-increment-increment 选项的值必须大于服务器的总数,并且每个服务器的值必须唯一.