MySQL——添加一个字段

1、添加一个字段
alter table tableName add 列名  数据类型;

2、添加一个字段设置默认值为0
alter table tableName add 列名  数据类型 default 0;