在已知表中添加字段、修改字段名、修改字段定义


1)添加字段

alter table xxx add column xxx int default 0 comment 'xxx';

2)修改字段名

alter table xxx change column old_xxx new_xxx int default 1 comment 'xxx'

3)修改字段定义

alter table xxx modify column xxx int default 1 comment 'xxx';