欢迎来到天天文库
浏览记录
ID:35506474
大小:68.09 KB
页数:3页
时间:2019-03-25
《数据库教学资料实验及答案11》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、实验十一数据完整性丄为学生表的学号创建主键约束。eltertablestudentaddconstraintpk_student_snoprimarykey(sno)丄为选课表创建学号及课程号的主键约束。eltertablescaddconstraintpk_sc_snocnoprimarykey(sno,eno)为课程表创建课程号的主键约束Oeltertablecourseaddconstraintpk_course_cnoprimarykey(eno)丄为选课表添加学号,课程号两个外键约束,其中学号外键的删除为级联,更新为级联。而课程号外键的删除为拒绝,
2、更新为级联。eltgrtablescaddconstraintfk_sc_snocnoforeignkey(sno)referencesstudent(sno)ondeletecascadeonupdatecascade,foreignkey(eno)referencescourse(eno)ondeletenoactiononupdatecascade厶根据student表,用selectinto语句创建一个系别,和student级联更新,删除设空。selectdistinctsdeptintosdeptfromstudentaltertablesdept
3、addconstraintpk_student_sdeptprimarykey(sdept)4丄tertablestudentaddconstraintfk_student_sdeptforeignkey(sdept)referencessdept(sdept)ondeletecascadeonupdatesetnull丄为学生表的姓名添加唯一约束。(注意姓名值不能重复)•dltgrtablestudentaddconstraintuq_student_S2meunique(sname)丄为学生表的性别(男、女)及入学成绩(0^750)添加check约束。d
4、ltgrtablestudentaddconstraintck_student_ssexcheck(ssexin('男J'女'))altertablestudentaddconstraintck_student_scomegr3decheck(scomegrade>=0andscomegrade<=750)为学生表的sdept添加默认值约束。altertablestudentaddconstraintde_student_sdeptdefault'计算机禾斗学'forsdept丄创建一个默认值对象date_default,创建一个自己的mystudent表,
5、将默认值绑定到mystudent表的入学日期字段上。execsp_addtype1mydate1,1date1,nullcreatedefaultdate_defaultasgetdate()createtablemystudent(scomedatemydate)execsp_bindefault1date_default1,'mydate丄解除默认值对象date_default绑定并删除默认值对象date_defaultoexecsp_unbindefault1mydatedropdefaultdate_default厶删除所有的约束。altertabl
6、escdropconstraintpk_sc_snocnoaltertablescdropconstraintfk_sc_snocnoeltertablecoursedropconstraintpk_course_cno4丄tertablestudentdropconstraintpk_student_snoeltgrtablestudentdropconstraintpk_student_sdeptaltertablestudentdropconstraintfk_student_sdeptaltertablestudentdropconstraintuq
7、_student_snameeltertablestudentdropconstraintck_student_ssex4丄tertablestudentdropconstraintck_student_scomegradedltgrtablestudentdropconstraintde_student_sdept丄创建一个规则,并绑定到表KC的课程号列,用于限制课程号的输入范createrulecourse_cnoas(@a>=1000and@a<=1100)execsp_bindrulecourse_cnof1course.eno丄在xscj2005数
8、据库中建立一个规则,其名称为“专业规则”,取值范围(
此文档下载收益归作者所有