资源描述:
《学生成绩管理系统 数据库设计(内含sql查询语句)》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、属于年龄性别学生1课程号学号选课课程名课程mn姓名学时N1ISAN4学分开课学期班号班级1选修课必修课开设专业编号专业属于N2系名称系编号11N3开设专业名系1createdatabase学生成绩管理系统gouse学生成绩管理系统gocreatetable系(系编号char(15)NOTNULLUNIQUE,系名称char(20)NOTNULLUNIQUE,constraint系pkprimarykey(系编号,系名称))createtable专业(专业编号char(15)NOTNULLUNIQUE
2、,专业名char(20)NOTNULLUNIQUE,系编号char(15)NOTNULL,constraint专业pkprimarykey(专业编号,专业名),constraintFK_系_专业foreignkey(系编号)references系(系编号))createtable班级(班号char(15)NOTNULLUNIQUE,班名char(20)NOTNULLUNIQUE,专业编号char(15)NOTNULL,constraint班级pkprimarykey(班号,班名),constrain
3、tFK_专业_班级foreignkey(专业编号)references专业(专业编号))createtable学生(学号char(15)NOTNULLUNIQUE,姓名char(20)NOTNULL,性别char(5),年龄int,班号char(15),constraint学生pkprimarykey(学号),constraint性别ckcheck(性别='男'or性别='女'),constraint年龄ckcheck(年龄>0and年龄<90),constraintFK_班级_学生foreignk
4、ey(班号)references班级(班号))createtable课程(课程号char(15)NOTNULLUNIQUE,课程名char(20)NOTNULL,学时int,学分float,开课学期char(20),课程性质char(10),constraint课程pkprimarykey(课程号),constraint课程性质ckcheck(课程性质='选修'or课程性质='必修'))createtable选课(学号char(15)NOTNULL,课程号char(15)NOTNULL,成绩floa
5、t,constraint选课pkprimarykey(学号,课程号),constraint成绩ckcheck(成绩>=0and成绩<=100),constraintFK_学生_选课foreignkey(学号)references学生(学号),constraintFK_课程_选课foreignkey(课程号)references课程(课程号))createview学生成绩(学号,姓名,班级,课程名,成绩,学分绩点)ASselect选课.学号,姓名,班级=(select班名from班级where班号=(
6、select班号from学生where学生.学号=选课.学号)),课程名,成绩,学分绩点=casewhen成绩>=90then学分*4when成绩<90and成绩>=85then学分*3.5when成绩<85and成绩>=80then学分*3when成绩<80and成绩>=75then学分*2.5when成绩<75and成绩>=70then学分*2when成绩<70and成绩>=65then学分*1.5when成绩<65and成绩>=60then学分*1when成绩<60then学分*0endfro
7、m学生,课程,选课where学生.学号=选课.学号and课程.课程号=选课.课程号