排名
5
文章
229
粉丝
15
评论
7
ICP备案 :渝ICP备18016597号-1
网站信息:2018-2025TNBLOG.NET
技术交流:群号656732739
联系我们:contact@tnblog.net
公网安备:
50010702506256


欢迎加群交流技术

一:添加约束:
1.添加主键约束
alter table 表名 add [constrant] [约束名] primary key(字段名);
2.添加唯一约束
alter table 表名 add [constrant] unique(字段);
3.添加默认索引
alter table 表名 add column 字段名 set default 默认值
4.添加检查约束
create table 表名(
字段名 enum(‘男’,’女)
);
5.添加外键约束
alter table 表名 add [constrant] [约束名] foreign key(字段名) references 主表名(字段名);
二:删除约束
1.删除主键约束
alter table 表名 drop primay key;
2.删除外键约束
alter table 表名 drop foreign key 约束名;
欢迎加群讨论技术,1群:677373950(满了,可以加,但通过不了),2群:656732739。有需要软件开发,或者学习软件技术的朋友可以和我联系~(Q:815170684)
评价