mysql 主键自增

比如创建表格,表格ID需要自增

将ID设置成主键,并配置auto_increment 

例:

create table test(

id  int(4)  not null  primary key  auto_increment

username char(20) 

passwd char(20)

原文地址:https://www.cnblogs.com/playboysnow/p/5640893.html