MYSQL数据库注释

//修改注释
alter table user comment  = '我要修改注释';



//新建表设定表注释及解释说明.
create table AuthUser(
     ID INT(19) primary key auto_increment  comment '主键',
     NAME VARCHAR(30) comment '姓名',
     CREATE_TIME date comment '创建时间'
)comment  = '用户信息表';
原文地址:https://www.cnblogs.com/dengyg200891/p/6012860.html