欢迎来到天天文库
浏览记录
ID:47405718
大小:17.70 KB
页数:16页
时间:2019-07-02
《大数据库原理张红娟问题详解》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、实用标准11.(1)给学生表增加一个属性Nation,数据类型为Varchar(20):ALTERTABLEStudentADDNationVARCHAR(20)NULL;(2)删除Nation:ALTERTABLEStudentDropColumnNation;(3)向成绩表中插入记录("2001110","3",80):insertintoGradevalues('2001110','3',80);(4)将学号为2001110的学生的成绩改为70分:updateGradesetGmark='70'whereSno='2001110';(5)删除学号为'2001110'的学生的成绩记录:d
2、eletefromGradewhereSno='2001110';(6)在学生表的clno属性上创建一个名为'IX_Class'的索引,以班级号的升序排序:createindexIX_ClassonStudent(clnoAsc);(7)删除'IX_Class'索引:dropindexStudent.IX_Class;文档大全实用标准12.(1)找出所有被学生选修了的课程号:selectdistinctCnofromGrade;(2)找出01311班女学生的个人信息:select*fromStudentwhereClno='01311'andSsex='女';(3)找出01311班和0131
3、2班的学生姓名、姓名、出生年份selectSname,Ssex,2014-Sageas[yearofbirth]fromStudentwhereClno='01311'orClno='01312';(4)找出所有姓李的学生的个人信息select*fromStudentwhereSnamelike'李%';(5)找出学生李勇所在班级的学生人数selectnumberfromstudentinnerjoinclassonstudent.clno=class.clnowheresname='李勇'(6)找出课程名为操作系统的平均成绩、最高分、最低分selectAVG(Gmark)平均成绩,MAX(
4、Gmark)最高分,MIN(Gmark)最低分fromGradewhereCnoin(selectCnofromCoursewhereCname='操作系统')文档大全实用标准(7)选修了课程的学生人数;selectCOUNT(distinctsno)学生人数fromGrade(8)选修了操作系统的学生人数;selectCOUNT(sno)学生人数fromcourseinnerjoingradeoncourse.cno=grade.cnowhereCname='操作系统'(9)找出2000级计算机软件班的成绩为空的学生姓名selectSname学生姓名from(Studentinnerjoi
5、nclassonstudent.clno=class.clno)innerjoingradeonstudent.sno=grade.snowhereSpeciality='计算机软件'andinyear='2000'andgmarkisnull13.1)找出和李勇在同一个班级的学生信息select*fromStudentwhereclnoin(selectClnofromStudentwhereSname='李勇')文档大全实用标准2)找出所有与学生李勇有相同选修课程的学生信息select*fromStudentwheresnoin(selectsnofromgradewherecnoin(
6、selectcnofromgradewheresnoin(selectsnofromstudentwhereSname='李勇')));3)找出年龄介于学生李勇和25岁之间的学生信息select*fromStudentwhereSage<25andSage>(selectSagefromStudentwhereSname='李勇')4)找出选修了课程是操作系统的学生学号和姓名selectSno学号,Sname姓名fromStudentwheresnoin(selectsnofromGradewhereCnoin(selectCnofromCoursewherecnoin(selectcnof
7、romcoursewhereCname='操作系统')));5)找出没有选修1号课程的所有学生姓名文档大全实用标准selectSname姓名fromStudentwherenotexists(select*fromGradewhereStudent.Sno=Grade.SnoandCno='1')6)找出选修了全部课程的学生姓名selectSname姓名fromStudentwherenotexists(se
此文档下载收益归作者所有