mysql 主键自增
Posted 踏雪无痕何处是
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql 主键自增相关的知识,希望对你有一定的参考价值。
比如创建表格,表格ID需要自增
将ID设置成主键,并配置auto_increment
例:
create table test(
id int(4) not null primary key auto_increment
username char(20)
passwd char(20)
)
以上是关于mysql 主键自增的主要内容,如果未能解决你的问题,请参考以下文章