修改emlog表字段名称

在em_twitter表中增加一个字段。

1,添加一个字段isImportant
alter table em_twitter add isImprotant int(4) not null default 0;
2,把字段isImprotant 改成isImportant
alter table em_twitter modify column isImprotant int(4) not null default 0;
~                                                                                   
原文地址:https://www.cnblogs.com/wangkongming/p/4004420.html