mysql 调整字段顺序
用法:alter table 表名 modify 字段名 字段类型 after 字段

调整score和course的顺序:alter table students modify score int after course;

posted on 2016-03-17 20:48 wonderful_journey 阅读(537) 评论(0) 收藏 举报
用法:alter table 表名 modify 字段名 字段类型 after 字段

调整score和course的顺序:alter table students modify score int after course;

posted on 2016-03-17 20:48 wonderful_journey 阅读(537) 评论(0) 收藏 举报