sql创建主键语句 怎么用SQL语句CREATETABLE的主键为“自动增加”?

怎么用SQL语句CREATETABLE的主键为“自动增加”?Auto increment:Auto增量示例:create table test(id int unsigned not null pri

怎么用SQL语句CREATETABLE的主键为“自动增加”?

Auto increment:Auto增量示例:create table test(id int unsigned not null primary key Auto) increment,username VARCHAR(15)not null)Auto在increment=100的测试表中,主键id自动递增