山东大学数据库系统英语课件04中级SQL

上传人:东*** 文档编号:279773641 上传时间:2022-04-20 格式:PPT 页数:52 大小:2.27MB
返回 下载 相关 举报
山东大学数据库系统英语课件04中级SQL_第1页
第1页 / 共52页
山东大学数据库系统英语课件04中级SQL_第2页
第2页 / 共52页
山东大学数据库系统英语课件04中级SQL_第3页
第3页 / 共52页
山东大学数据库系统英语课件04中级SQL_第4页
第4页 / 共52页
山东大学数据库系统英语课件04中级SQL_第5页
第5页 / 共52页
点击查看更多>>
资源描述

《山东大学数据库系统英语课件04中级SQL》由会员分享,可在线阅读,更多相关《山东大学数据库系统英语课件04中级SQL(52页珍藏版)》请在金锄头文库上搜索。

1、Database System Concepts, 6th Ed.Silberschatz, Korth and SudarshanSee www.db- for conditions on re-use Chapter 4: Intermediate SQLSilberschatz, Korth and Sudarshan4.2Database System Concepts - 6th EditionChapter 4: Intermediate SQLnJoin ExpressionsnViewsnTransactionsnIntegrity ConstraintsnSQL Data T

2、ypes and SchemasnAuthorizationSilberschatz, Korth and Sudarshan4.3Database System Concepts - 6th EditionJoined RelationsnJoin operations take two relations and return as a result another relation.nA join operation is a Cartesian product which requires that tuples in the two relations match (under so

3、me condition). It also specifies the attributes that are present in the result of the join nThe join operations are typically used as subquery expressions in the from clauseSilberschatz, Korth and Sudarshan4.4Database System Concepts - 6th EditionJoin operations ExamplenRelation coursenRelation prer

4、eqn Observe that prereq information is missing for CS-315 and course information is missing for CS-437Silberschatz, Korth and Sudarshan4.5Database System Concepts - 6th EditionOuter JoinnAn extension of the join operation that avoids loss of information.nComputes the join and then adds tuples form o

5、ne relation that does not match tuples in the other relation to the result of the join. nUses null values.Silberschatz, Korth and Sudarshan4.6Database System Concepts - 6th EditionLeft Outer Joinn course natural left outer join prereqSilberschatz, Korth and Sudarshan4.7Database System Concepts - 6th

6、 EditionRight Outer Joinn course natural right outer join prereqSilberschatz, Korth and Sudarshan4.8Database System Concepts - 6th EditionJoined RelationsnJoin operations take two relations and return as a result another relation.nThese additional operations are typically used as subquery expression

7、s in the from clausenJoin condition defines which tuples in the two relations match, and what attributes are present in the result of the join.nJoin type defines how tuples in each relation that do not match any tuple in the other relation (based on the join condition) are treated.Silberschatz, Kort

8、h and Sudarshan4.9Database System Concepts - 6th EditionFull Outer Joinn course natural full outer join prereqSilberschatz, Korth and Sudarshan4.10Database System Concepts - 6th EditionJoined Relations Examples ncourse inner join prereq oncourse.course_id = prereq.course_idnWhat is the difference be

9、tween the above, and a natural join? ncourse left outer join prereq oncourse.course_id = prereq.course_idSilberschatz, Korth and Sudarshan4.11Database System Concepts - 6th EditionJoined Relations Examplesncourse natural right outer join prereqn course full outer join prereq using (course_id)Silbers

10、chatz, Korth and Sudarshan4.12Database System Concepts - 6th EditionViewsnIn some cases, it is not desirable for all users to see the entire logical model (that is, all the actual relations stored in the database.)nConsider a person who needs to know an instructors name and department, but not the s

11、alary. This person should see a relation described, in SQL, by select ID, name, dept_name from instructornA view provides a mechanism to hide certain data from the view of certain users. nAny relation that is not of the conceptual model but is made visible to a user as a “virtual relation” is called

12、 a view.Silberschatz, Korth and Sudarshan4.13Database System Concepts - 6th EditionView DefinitionnA view is defined using the create view statement which has the formcreate view v as where is any legal SQL expression. The view name is represented by v.nOnce a view is defined, the view name can be u

13、sed to refer to the virtual relation that the view generates.nView definition is not the same as creating a new relation by evaluating the query expression lRather, a view definition causes the saving of an expression; the expression is substituted into queries using the view.Silberschatz, Korth and

14、 Sudarshan4.14Database System Concepts - 6th EditionExample ViewsnA view of instructors without their salary create view faculty as select ID, name, dept_name from instructornFind all instructors in the Biology department select name from faculty where dept_name = BiologynCreate a view of department

15、 salary totals create view departments_total_salary(dept_name, total_salary) as select dept_name, sum (salary) from instructor group by dept_name; Silberschatz, Korth and Sudarshan4.15Database System Concepts - 6th EditionViews Defined Using Other Viewsncreate view physics_fall_2009 as select course

16、.course_id, sec_id, building, room_number from course, section where course.course_id = section.course_id and course.dept_name = Physics and section.semester = Fall and section.year = 2009;ncreate view physics_fall_2009_watson as select course_id, room_number from physics_fall_2009 where building= Watson;Silberschatz, Korth and Sudarshan4.16Database System Concepts - 6th EditionView ExpansionnExpand use of a view in a query/another viewcreate view physics_fall_2009_watson as(select course_id, ro

展开阅读全文
相关资源
相关搜索

当前位置:首页 > IT计算机/网络 > 数据库

电脑版 |金锄头文库版权所有
经营许可证:蜀ICP备13022795号 | 川公网安备 51140202000112号