mysql添加约束

列级添加约束

alter  table   表名  modify  column  字段名  字段类型    约束

 

表级添加约束

alter   table   表名   add  【constraint   约束名】  约束类型(字段名)【外键的引用】

 

 

列级删除非空约束

alter  table  表名   modify  column  字段名   字段类型   null;

 

删除默认约束

 alter  table  表名  modity  column  字段名  字段类型   ;

删除主键

alter  table  表名   drop  column  primary  key;

删除唯一

alter  table  表名  drop  column  index   字段名;

 

删除外键

alter  table  表名  drop  column  foreign  key   字段名;

mysql添加约束

上一篇:oracle-函数


下一篇:mysql-8.0.13-linux-glibc2.12-x86_64.tar.xz 安装步骤