[mysql]一个表能否有两个自增字段?

关于一个表能否有两个自增字段

数据库:MySql

执行:mysql>
create table auto2increment
(
a int not null auto_increment,
b int not null auto_increment,
primary key (a),
unique key (b)
); 
ERROR: Incorrect table definition; 
there can be only one auto column and it must be defined as a key

说明:一个表只能有一个auto_increment,且该列必须是primary key或者unique key。

你可能感兴趣的:(MySQL,mysql,sql,数据库)