Home >Database >Mysql Tutorial >深入理解mysql数据库的约束

深入理解mysql数据库的约束

PHPz
PHPzOriginal
2016-06-01 13:12:191001browse

摘要:MYSQL添加约束,删除约束添加列,修改列,删除列 添加主键约束: altertable表名addconstraint主键(形如:PK_表名)primarykey表名(主键字段); 添加外键约束: altertable从表addconstraint外键(形如:FK_从表_主表)foreignkey从表(外键字段)references主表(主键字段);  删除主键约束: altertable表名droppri

MYSQL添加约束,删除约束 添加列,修改列,删除列 添加主键约束: alter table 表名 add constraint 主键 (形如:PK_表名) primary key 表名(主键字段); 添加外键约束: alter table 从表 add constraint 外键(形如:FK_从表_主表) foreign key 从表(外键字段) references 主表(主键字段);  删除主键约束: alter table 表名 drop primary key;  删除外键约束: alter table 表名 drop foreign key 外键(区分大小写);  添加列: alter table 表名 add column 列名 varchar(30);  删除列: alter table 表名 drop column 列名;  修改列名MySQL: alter table bbb change nnnnn hh int;  修改列属性:alter table t_book modify name varchar(22);

以上是mysql约束总结的内容。

【相关教程推荐】

1. PHP在线手册
2. mysql数据库图文教程
3. bootstrap教程

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn