整理备忘:
添加字段:
alter table 表名
Add column 字段名 字段类型 默认值 AFTER 字段名 (在哪个字段后面添加)
例子:
alter table appstore_souapp_app_androidmarket
Add column getPriceCurrency varchar(50) default null AFTER getPrice
修改字段:
alter table表名
change 字段名 新字段名 字段类型 默认值
例子:
alter table appstore_souapp_app_androidmarket change hasPrice hasPrice varchar(10) null;
ALTER TABLE xshop_update_fail CHANGE bill_no bill_no BIGINT(20) UNSIGNED NULL COMMENT '系统订单号'
多字段修改
ALTER TABLE xshop_logistics_relation
CHANGE 3rd_company_id company_id_3rd CHAR(50) DEFAULT NULL COMMENT '第三方物流公司ID',
CHANGE 3rd_company_code company_code_3rd CHAR(50) NOT NULL DEFAULT '' COMMENT '第三方物流公司代码',
CHANGE 3rd_company_name company_name_3rd CHAR(50) DEFAULT NULL COMMENT '第三方物流公司名称';
删除字段:
alter table 表名 drop column 字段名
例子:
alter table appstore_souapp_app_androidmarket drop column getPriceCurrency
调整字段顺序:
alter table 表名
change 字段名 新字段名 字段类型 默认值 after 字段名(跳到哪个字段之后)
例子:
alter table appstore_souapp_app_androidmarket<BR>change getPriceCurrency
getPriceCurrency varchar(50) default null AFTER getPrice
原文:http://blog.csdn.net/changemyself/article/details/5976207