摘要: 添加字段: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 va 阅读全文
posted @ 2012-12-11 12:50 brookin 阅读(248) 评论(0) 推荐(0)