自增长 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的主要内容,如果未能解决你的问题,请参考以下文章

SQL如何插入自增长的主键值(如图)。谢谢

为啥设置表空间自增长老是报ORA-02142错误 ,语句如下:

SqlServer里设置主键自增长有几种方式?

sql自增长跳号,怎么办?

在SqlServer中怎样设置自动增长字段

SqlServer里设置主键自增长有几种方式?