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 '';