比如创建表格,表格ID需要自增
将ID设置成主键,并配置auto_increment
例:
create table test(
id int(4) not null primary key auto_increment
username char(20)
passwd char(20)
)
时间: 2024-10-08 05:57:14
比如创建表格,表格ID需要自增
将ID设置成主键,并配置auto_increment
例:
create table test(
id int(4) not null primary key auto_increment
username char(20)
passwd char(20)
)