[b]1. 添加单个字段[/b]
alter table test add c4 varchar(2);
[b]2. 添加多个字段[/b]
alter table test add column sent_blacklist int(11) DEFAULT 0 COMMENT ' 我是注释1', add column sent_notexist int(11) DEFAULT 0 COMMENT '注释2', add column sent_error int(11) DEFAULT 0 COMMENT '注释3';
对比可以看到,[color=red]添加多个字段需要"add column 字段名",而单个字段直接"add 字段名"。[/color]
mysql其他alter语法:
[url]http://www.cnblogs.com/aspnethot/articles/1397130.html[/url]
alter table test add c4 varchar(2);
[b]2. 添加多个字段[/b]
alter table test add column sent_blacklist int(11) DEFAULT 0 COMMENT ' 我是注释1', add column sent_notexist int(11) DEFAULT 0 COMMENT '注释2', add column sent_error int(11) DEFAULT 0 COMMENT '注释3';
对比可以看到,[color=red]添加多个字段需要"add column 字段名",而单个字段直接"add 字段名"。[/color]
mysql其他alter语法:
[url]http://www.cnblogs.com/aspnethot/articles/1397130.html[/url]