mysql如何更改表字段类型?

发布时间:2019-08-06编辑:脚本学堂
有关mysql更改表字段类型的方法,使用alter table 表名 modify 字段名 字段类型语句来完成,需要的朋友参考下。

mysql添加与修改字段类型

1、更改Float字段类型to Decimal
 

alter table 表名 modify 字段名 decimal(10,2) not null default '0';

例如:
 

alter table invoice modify totalmoney decimal(10,2) not null  default '0';

2、添加字段
 

alter table 表名 add 字段名 字段类型 not null ;

例如:
 

alter table teacher add TypeMark varchar(50) null default '';