mysql 修改表结构
Posted 裸奔的太阳
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql 修改表结构相关的知识,希望对你有一定的参考价值。
增加列:
# 增加列:tag(笔记)、sort_num alter table e_user add tag varchar(50) not null default "笔记" comment ‘标签‘ after create_timestamp; # 在e_user表的create_timestamp字段后添加tag列 alter table e_user add sort_num int(10) not null default -1 comment ‘排序号‘
删除列:下面两种方式都可以
alter table e_user drop column tag_name alter table e_user drop sort_num
重命名表名
alter table old_table rename to new_table;
设置列的默认值
设置effect_data表的effective_years默认值为1
alter table effect_data alter effective_years set default 1;
以上是关于mysql 修改表结构的主要内容,如果未能解决你的问题,请参考以下文章