Mysql 使用sql语句添加列,修改列默认值,添加类注释

-- 添加列
alter table bas_news add  attend_count int ;
-- 添加默认值
alter table bas_news alter column attend_count set default 0;
-- 添加列注释
alter table bas_news modify column attend_count int comment '参与人数'

  

posted @ 2019-04-28 10:57  超级飞猪猪侠  阅读(2514)  评论(0编辑  收藏  举报