自增长 auto_increment
Posted mariobear
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自增长 auto_increment相关的知识,希望对你有一定的参考价值。
auto_increment :自动编号,一般与主键组合使用。一个表里面只有一个自增默认情况下,起始值为1,每次的增量为1。
例子:
create table tb5(
id int primary key auto_increment,
name varchar(20)
)auto_increment =100;
#删除自动增长
mysql> alter table tb5
-> modify id int;
#增加自动增长auto_increment
mysql> alter table tb5
-> modify id int auto_increment;
以上是关于自增长 auto_increment的主要内容,如果未能解决你的问题,请参考以下文章