文章詳情頁
如何修改mysql數據表主鍵
瀏覽:14日期:2023-06-08 19:37:37
目錄修改mysql數據表主鍵mysql表的修改---主鍵等各種約束總結修改mysql數據表主鍵
這里以網上copy的建表語句為例
create table users(? ? name ? ? ?varchar(50) ? ? ? ? ? ? ? ? ? ? ? ? null,? ? salt ? ? ?char(4) ? ? ? ? ? ? ? ? ? ? ? ? ? ? null comment '鹽',? ? password ?varchar(255) ? ? ? ? ? ? ? ? ? ? ? ?null comment '密碼',? ? create_at timestamp default CURRENT_TIMESTAMP null comment '創建時間',? ? update_at timestamp default CURRENT_TIMESTAMP not null on update CURRENT_TIMESTAMP comment '修改時間',? ? tid ? ? ? int unsigned auto_increment? ? ? ? primary key)? ? charset = utf8;mysql的版本是8,這里要把主鍵tid改為id。需改自增主鍵需要三步驟
先刪除掉自增
alter table ?users modify tid int not null;再刪除主鍵
alter table ?users drop primary key;修改名稱
alter table ?users change tid id int unsigned auto_increment primary key;mysql表的修改---主鍵等各種約束1、添加字段
alter table 表名 add column 字段 字段類型 約束2、更改原表字段名,同時可以更改字段類型,長度,約束
alter table 表名 change 舊字段 新字段 字段 字段類型 約束3、更改字段類型,長度,約束
alter table 表名 modify 字段 字段類型 約束4、刪除字段
alter table 表名 drop 字段名5、增加主鍵,可以增加聯合主鍵
alter table 表名 add primary key(字段名1,字段名2)6、刪除主鍵
alter table 表名 drop primary key7、增加外鍵
alter table 表名 add constraint 約束名 foreign key 表名(字段名1,字段名2) references 關聯表(字段名1,字段名2)8、刪除外鍵
alter table 表名 drop foreign key 外鍵名9、修改表名稱
alter table 表名 rename to 新表名總結以上為個人經驗,希望能給大家一個參考,也希望大家多多支持好吧啦網。
上一條:深入解析MySQL的窗口函數下一條:mysql的約束及實例分析
排行榜
