mysql修改字段

来源:互联网 发布:手机怎样添加网络 编辑:程序博客网 时间:2024/06/01 10:44

1.在mysql中建好表之后修改id字段为递增字段,发现这个奇怪的mysql语法,如下

alter table student change id id int auto_increment;

这句是在student表已经建好的情况下来修改字段id为自增列,奇怪的是为嘛change id id,并且后面还要带上id的类型int?

0 0