1.增加列
alter
table table_name add field_name field_type [comment '注釋說明'];
2.修改列欄位名稱
alter
table table_name change old_field_name new_filed_name field_type;
3.修改列字段的型別資訊
alter
table table_name change field_name filed_name new_field_type;
alter
table table_name modify field_name field_type;
4.刪除列欄位
alter
table table_name drop field_name;
5.在某個欄位後增加字段:
alter
table table_name
addcolumn filed_name int
notnull
default
0after
`regionid` (在哪個字段後面新增)
6.調整字段順序
alter
table
`user_movement_log` change `gatewayid`
`gatewayid`
intnot
null
default
0after regionid
MySQL之alter語句用法總結
mysql之alter語句用法總結 1 刪除列 alter table 表名字 drop 列名稱 2 增加列 alter table 表名字 add 列名稱 int not null comment 注釋說明 3 修改列的型別資訊 alter table 表名字 change 列名稱 新列名稱 這裡...
MySQL之alter語句用法總結
1 刪除列 alter table 表名字 drop 列名稱 2 增加列 alter table 表名字 add 列名稱 int not null comment 注釋說明 3 修改列的型別資訊 alter table 表名字 change 列名稱 新列名稱 這裡可以用和原來列同名即可 bigint...
MySQL之alter語句用法總結
1 刪除列 alter table 表名字 drop 列名稱 2 增加列 alter table 表名字 add 列名稱 int not null comment 注釋說明 3 修改列的型別資訊 alter table 表名字 change 列名稱 新列名稱 這裡可以用和原來列同名即可 bigint...