使用mysql 命令行,增加 ,删除 字段 并 设置默认值 及 非空

使用mysql 命令行,增加 ,删除 字段 并 设置默认值 及 非空

添加

alter table table_name add field_name field_type;

添加,并设置默认值,及非空

alter table table_name add field_name field_type default 值 not null

删除

alter table table_name drop field_name;
上一篇:Android tools:context=".MainActivity"的作用


下一篇:安装python+setuptools+pip+nltk