自我提升mysql
时间:2014-08-22 12:49:58
收藏:0
阅读:270
1.某字段更新 自增 1
update table set a=a+1
2.修改某一字段的数据类型
alter table "tablename" modify "column" "type"
3.更改字段名
alter table "tablename" change column col_old col_new "type"
评论(0)