1. 程式人生 > 實用技巧 >mysql alter用法場景

mysql alter用法場景

mysql中alter主要有兩種使用場景,第一種是修改表資訊如表名等,第二種是修改表字段資訊,如新增欄位,修改欄位等。第二種使用較多。

第一種修改表資訊場景如下:

(1)修改表名

alter table test_a rename to sys_app;

(2)修改表註釋

alter table sys_application comment '系統資訊表';

第二種修改表字段場景如下:

(1)修改欄位型別和註釋

alter table sys_application  modify column app_name varchar(20) COMMENT '應用的名稱';

(2)修改欄位型別

alter table sys_application  modify column app_name text;

(3)設定欄位允許為空

alter table sys_application  modify column description varchar(255) null COMMENT '應用描述';

(4)增加一個欄位,並設定資料型別,且不為空,添加註釋

alter table sys_application add `url` varchar(255) not null comment '應用訪問地址';  

(5)增加主鍵

alter table t_app add aid int(5) not null,add primary key (aid);  

(6)增加自增主鍵

alter table t_app add aid int(5) not null auto_increment ,add primary key (aid); 

(7)修改為自增主鍵

alter table t_app  modify column aid int(5) auto_increment ;

(8)修改欄位名字(要重新指定該欄位的型別)

alter table t_app change name app_name varchar(20) not null;

(9)刪除欄位

alter table t_app drop aid; 

(10)在某個欄位後增加欄位

-- 在哪個欄位後面新增
alter table `t_app` add column gateway_id int  not null default 0 AFTER `aid`; 

(11)調整欄位順序

 -- 注意gateway_id出現了2次
alter table t_app  change gateway_id gateway_id int not null after aid ;

參考博文:https://www.cnblogs.com/zsg88/p/7818684.html