资源描述:
《数据库的增删改查.doc》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、学习收藏数据库增删改查--查询信息系和计算机系的学生,并按学生所在系和学号排序。selectsno,sname,SdeptfromStudentwhereSdept='CS'ORSdept='IS'orderbySdept,snoASC--查询学生表中最小的年龄。selectMIN(sagefromstudent--查询课程名中包含“数据”的课程名。selectcno,cnamefromcoursewhereCnamelike'%数据%'--查询先行课程为空值的课程号、课程名及学分selectc
2、no,cname,ccreditfromCoursewhereCpnoisnull--查询李勇选修的数据库课程的成绩selectgradefromSCwhereSno=(selectSnofromStudentwhereSname='李勇'andCno=(selectCnofromCoursewherecname='数据库'--查询平均成绩分以上的学生的学号selectdistinctsnofromSCscxwhere(selectAVG(GradefromSCscywherescy.sno=s
3、cx.Sno>85--求计算机系没有选修数据库课程的学生姓名selectsnamefromStudentwhereSnonotin(selectSnofromSCwhereCnoin(selectCnofromCoursewhereSname='数据库'andSdept='IS'--求至少选修了学号为S1所选修的全部课程的学生学号selectdistinctsnofromSCscxwherenotexists(select*fromSCscywherescy.Sno=''andnotexists
4、(select*fromscsczwherescz.sno=scx.snoandscy.Cno=scz.Cno--求各系的系的学生人数的,并将结果按学生人数的降序排序selectSdept,COUNT(snofromStudentgroupbySdeptorderbySdeptASC--查询选修了数学课程并且成绩高于该门课程平均分的学生学号和成绩selectsno,gradefromSCscxwhereGrade>=(selectAVG(GradefromSCscywhereCno=(selec
5、tCnofromCoursewhereCname='数学'andCno=(selectCnofromCoursewhereCname='数学'/*将学习了数据库课程的学生成绩加分。*/updateSCsetgrade=grade+5whereCnoin(selectCnofromSCwhereCno=(selectCnofromCoursewhereCname='数据库'select*fromSC/*将计算机系学习了号课程的学生成绩置。*/updateSCsetGrade=0whereSnoin
6、(selectsc.SnofromStudent,SCwhereCno='2'andSdept='CS'select*fromSC/*将李勇的数据库成绩改为。*/updateSCsetGrade=85whereSno=(selectSnofromStudentwhereSname='李勇'andCno=(selectCnofromCoursewhereCname='数据库'select*fromSC/*将选修了号课程且成绩为空的选课记录删除。*/deletefromSCwhereCno='2'a
7、ndGradeisnullselect*fromSC/*从课程表中删除在选课表中没有选课记录的课程记录。*/deletefromCoursewhereCnonotin(selectcnofromSCselect*fromCourse/*删除计算机系学生选修了数据库课程的选课记录。*/deletefromSCwhereSnoin(selectSnofromStudentwhereSdept='CS'andCno=(selectCnofromCoursewhereCname='数据库'select*
8、fromSC/*求各系的系名及男女生人数并将结果保存到另一个表中。*/createtableDept_ssex_count(Sdeptchar(15,Ssexchar(2,Count1smallintinsertintoDept_ssex_count(Sdept,Ssex,Count1selectSdept,Ssex,count(SnofromstudentgroupbySdept,Ssex;select*fromDept_ssex_countselect*fromstudent/*将平均成绩分