如何在已建好的表格中添加字段?

 alter table sy_user add regtime timestamp null default CURRENT_TIMESTAMP COMMENT '代理创建时间';
alter table 表名 add 字段  字段属性 null default 默认属性 comment '注释';
原文地址:https://www.cnblogs.com/lovewyc1314/p/6055492.html