上一篇是对表中列的操作:
涉及到列的增删改查;
-----
而本篇是设置一个与另一个表的关系,还有列的默认值;
----
1.一个表创建之后,
需要对这个表中的一个字段设置为主键:
alter table table_name add primary key (id);
alter table 表名 add primary key (字段名);
2.一个表创建之后,
需要对这个表中的一个字段设置为唯一约束:
alter table table_name add unique (id);
alter table 表名 add unique (字段名);
3.一个表创建之后,
需要对这个表中的一个字段设置为外键约束:
alter table table_name add foreign key (id) references out_table_name (pid);
alter table 表名 add foreign key (外键字段名) references 外键约束表名 (外键约束字段名);
例如:把test2中pid字段设置为外键,外键约束是test1的id字段
alter table test2 add foreign key (pid) references test1 (id);
4.添加默认约束
一个表创建之后,需要对一个字段设置为默认值;
alter table table_name alter col_name set default 12;
Alter table 表名 alter 字段名 set default 值;
例如把password2设置默认值为123456;
alter table test2 alter password2 set default 123456;
5.删除默认约束
一个表创建之后,需要把设置为默认值的字段取消设置默认值;
alter table table_name alter col_name drop default;
例如:刚才把password2设置了默认值,现在不需要设置了;
alter table test2 alter password2 drop default;
本文分享自 交互设计前端开发与后端程序设计 微信公众号,前往查看
如有侵权,请联系 cloudcommunity@tencent.com 删除。
本文参与 腾讯云自媒体同步曝光计划 ,欢迎热爱写作的你一起参与!
扫码关注腾讯云开发者
领取腾讯云代金券
Copyright © 2013 - 2025 Tencent Cloud. All Rights Reserved. 腾讯云 版权所有
深圳市腾讯计算机系统有限公司 ICP备案/许可证号:粤B2-20090059 深公网安备号 44030502008569
腾讯云计算(北京)有限责任公司 京ICP证150476号 | 京ICP备11018762号 | 京公网安备号11010802020287
Copyright © 2013 - 2025 Tencent Cloud.
All Rights Reserved. 腾讯云 版权所有