sql插入语句怎么设置表中的一列于自动增长列一样
1个回答
展开全部
1.
如果该字段不是主键,需要先设置该字段为主键:
alter
table
表名
add
primary
key(字段名);
2.
修改字段为自动增长
alter
table
表名
change
字段名
字段名
字段类型
auto_increment;
下面是完整例子:
1.create
table
student(id
int);
2.alter
table
student
add
primary
key(id);
3.alter
table
student
change
id
id
int
auto_increment;
mysql测试过,可以这样做,其他数据库应该也可以。
如果该字段不是主键,需要先设置该字段为主键:
alter
table
表名
add
primary
key(字段名);
2.
修改字段为自动增长
alter
table
表名
change
字段名
字段名
字段类型
auto_increment;
下面是完整例子:
1.create
table
student(id
int);
2.alter
table
student
add
primary
key(id);
3.alter
table
student
change
id
id
int
auto_increment;
mysql测试过,可以这样做,其他数据库应该也可以。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询