资源描述:
《华南农业大学数据库系统概念实验报告三》由会员上传分享,免费在线阅读,更多相关内容在应用文档-天天文库。
1、WORD格式可编辑《数据库系统》实验报告三学号姓名实验时间2014-11-26实验名称数据查询实验学时4准备材料1.SQLPlus命令手册2.Oracle数据字典扩展实验1.利用企业管理器的图形界面构造查询语句,并察看查询结果2.利用企业管理器完成视图、索引的创建与使用。3.利用DBMS进行对第三章习题所设计SQL语句的检查(此部分内容不要求在实验室完成,不用写入实验报告。)实验环境Oracle9i(及以上版本)服务器SQLPlus/SQLPlusworksheet客户端实验目的1.掌握使用SQL语
2、句进行数据查询的方法2.掌握视图的创建与使用方法3.观察索引的使用效果实验内容及步骤1.使用University数据库的数据库结构和数据(smallRelations即可),完成下列查询:(1)FindthenamesofcoursesinComputersciencedepartmentwhichhave3creditsSELECTtitleFROMcourseWHEREdept_name='Comp.Sci.'ANDcredits=3WORD格式可编辑(2)ForthestudentwithID
3、12345(oranyothervalue),showallcourse_idandtitleofallcoursesregisteredforbythestudent.SELECTcourse_id,titleFROMtakesNATURALJOINcourseWHEREid=123454.Asabove,butshowthetotalnumberofcreditsforsuchcourses(takenbythatstudent).Don'tdisplaythetot_credsvaluefro
4、mthestudenttable,youshoulduseSQLaggregationoncoursestakenbythestudent.WORD格式可编辑SELECTid,SUM(credits)FROMtakesNATURALJOINstudentNATURALJOINcourseWHEREid=12345GROUPBYid;(3)Asabove,butdisplaythetotalcreditsforeachofthestudents,alongwiththeIDofthestudent;d
5、on'tbotheraboutthenameofthestudent.(Don'tbotheraboutstudentswhohavenotregisteredforanycourse,theycanbeomitted)SELECTid,SUM(credits)FROMtakesNATURALJOINstudentNATURALJOINcourseGROUPBYidWORD格式可编辑(4)FindthenamesofallstudentswhohavetakenanyComp.Sci.coursee
6、ver(thereshouldbenoduplicatenames)SELECTDISTINCTid,NAMEFROMtakesNATURALJOINstudentWHEREcourse_idIN(SELECTcourse_idFROMcourseWHEREdept_name='Comp.Sci.')(5)DisplaytheIDsofallinstructorswhohavenevertaughtacourse(Notesad1)Oracleusesthekeywordminusinplaceof
7、except;(2)interpret"taught"asWORD格式可编辑"taughtorisscheduledtoteach")SELECTidFROMinstructorWHEREidNOTIN(SELECTDISTINCTidFROMteaches)(6)Asabove,butdisplaythenamesoftheinstructorsalso,notjusttheIDs.SELECTid,NAMEFROMinstructorWHEREidNOTIN(SELECTDISTINCTidFR
8、OMteaches)WORD格式可编辑(7)Findthemaximumandminimumenrollmentacrossallsections,consideringonlysectionsthathadsomeenrollment,don'tworryaboutthosethathadnostudentstakingthatsectionSELECTmax(enrollment),min(enrollment)from(SELECTsec_id,semester