为了账号安全,请及时绑定邮箱和手机立即绑定

怎么增加 auto_increment

test >create table users(
  -> id smallint unsigned primary key,
 -> username varchar(20) not null, 
 -> age tinyint unsigned not null default 10,
 -> sex boolean);
 
 忘记添加AUTO_INCREMENT自动编号,怎么添加进去


正在回答

3 回答

alter table users change id smallint unsigned auto_increment;

0 回复 有任何疑惑可以回复我~

alter table user change id smallint primary key auto_increment;


0 回复 有任何疑惑可以回复我~
alter table user change id id smallint unsigned auto_increment;


0 回复 有任何疑惑可以回复我~
#1

秋水丶

用MODIFY呢。
2018-03-22 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
与MySQL的零距离接触
  • 参与学习       396886    人
  • 解答问题       3353    个

本课程涵盖全部MySQL数据库的基础,学习MySQL数据库的基础知识

进入课程

怎么增加 auto_increment

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信