1. 程式人生 > 實用技巧 >ThinkPHP5分散式資料庫讀寫分離

ThinkPHP5分散式資料庫讀寫分離

MySQL修改表時新增或刪除約束

     即修改表字段的資料型別或約束

    外來鍵刪除約束: ALTER TABLE 表名 DROP CONSTRAINT 約束名稱

1) 非空約束
alter table students modify column s_name varchar(20) not null; # 新增 
alter table students modify column s_name varchar(20) ;             # 刪除 不寫約束條件

2)預設約束
alter table students modify column age int default 18; #新增

alter table students modify column age;                      #刪除

3)唯一鍵約束
alter table students modify column seat int unique; #新增
alter table students drop index seat;                       #刪除
show index from students;                                  #檢視唯一約束

4)主鍵約束
alter table students modify column id int primary key; #新增

alter table students drop primary key;                         #刪除 約束名稱

5)外來鍵約束
alter table students add foreign key(major_id) references majors(id); #新增
alter table students drop foreign key fk_students_teacher;                #刪除 約束名稱

 

自增長列 auto_increment

id int primary key auto_increment,

一個表中有且只能有一個自增長列,自增長列一般和主鍵搭配

修改表的時候新增自增長列:
alter table t_indentity modify column id int primary key auto_increment;

刪除自增長列:
alter table t_indentity modify column id int;