标签:varchar title article column rop odi color str style
create table t_article( id int(11) primary key auto_increment, name varchar(255) not null )engine=innodb default charset=utf8;
2.1 修改表名
两种方法:一种方法直接用 rename 关键字,另一种方法用 alter 修改表
rename table tt_user to t_user; alter table t_user rename to tt_user;
2.2 修改列名
alter table t_article change column name title varchar(255) not null;
2.3 修改列类型
alter table t_article modify column title varchar(255) not null; --或 alter table t_article change column title title varchar(255) not null; --change修改时指定列名一致也可以修改列类型
drop table if exists t_article;
标签:varchar title article column rop odi color str style
原文地址:https://www.cnblogs.com/liuyiyuan/p/13333872.html