1.win+r,输入cmd
2.输入 mysql -u root -p
3.输入数据库密码
4.选择数据库,use 数据库名称,例如
use xina;
5.查看表中字段名以及类型。
show create table 表名;
例如我要查看news这个表
show create table news;
6.修改表中字段名的类型
alter table 表名 modify column 字段名 类型;
比如我想修改news表中NEWS_TITLE的类型,将他从text变为varchar(255)
alter table news modify column NEWS_TITLE VARCHAR(255);