mysql 修改字段类型
Posted 张志峰的博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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 ‘‘;
以上是关于mysql 修改字段类型的主要内容,如果未能解决你的问题,请参考以下文章