欢迎来到天天文库
浏览记录
ID:51437553
大小:35.50 KB
页数:5页
时间:2020-03-24
《数据库建表-建约束-建外键.doc》由会员上传分享,免费在线阅读,更多相关内容在应用文档-天天文库。
1、usestuCreateTableCourse(CIDVarchar(12)NotNullPrimaryKey,CNameVarchar(20)NotNullUnique,CCridetVarchar(20)NotNull);Select*fromCourse--利用命令为表Course创建主键AlterTableCourseAddConstraintPK_CNoPrimaryKey(CID,CName)--删除约束AlterTableCourseDropConstraintUQ__Course__0425A276--利用语句增加Unique约束AlterTableCou
2、rseAddConstraintUe_CnameUnique(CName)--增加Default约束AlterTableCourseAddConstraintUD_CreditDefault'内蒙古呼和浩特'ForCCridet--插入新的记录InsertIntoCourseValues('001','OOP',Default)Select*fromCourseInsertIntoCourse(CID,CName)Values('002','OOO')select*fromCourse--如果利用Insert语句指定特定的列时,必须包含--不能为空的所有列(不能为空但定义
3、了Default约束--除外)CreateTableStu(SIDVarchar(12)NotNull,SNameVarchar(12)NotNull,SSexChar(2)NotNull)Select*FromStuAlterTableStuAddCOnstraintUD_SexDefault'男'ForSSexInsertIntoStu(SID,SName)Values('001','Herry')Select*FromStu--TimeStamp时间戳--IdentityCreateTableClass(CIDIntIdentity(1,2),CAddressVar
4、char(20)NotNull)InsertIntoClass(CAddress)Values('恶人都是')Select*fromClassDeleteFromClassWhereCID=33--创建成绩表ScoreCreateTableScore(CIDVarchar(12)NotNullPrimaryKey,--成绩编号CNumberVarchar(12)NotNull,--学号CNameVarchar(20)NotNull,--课程名称CScoreDecimal(5,2)NotNull)Select*FromScore--创建CHeck约束AlterTableSc
5、oreAddConstraintCK_BrandCheck(CScorebetween0and100)InsertIntoScoreValues('34','34','34',10.00)select*fromScore--ForeignKey外键--创建员工表Employee和工资表SalaryCreateTableEmployee(EIDVarchar(12)NotNullPrimaryKey,--员工号ENameVarchar(20)NotNull--员工姓名)CreateTableSalary(SIDVarchar(12)NotNullPrimaryKey,--工
6、资编号EIDVarchar(12)NotNull)AlterTable球队名AddConstraintFK_球队名ForeignKey(球队名)References球队表(球队名)
此文档下载收益归作者所有