山大數(shù)據(jù)庫(kù)系統(tǒng)英語(yǔ)課件06形式化關(guān)系查詢語(yǔ)言_第1頁(yè)
山大數(shù)據(jù)庫(kù)系統(tǒng)英語(yǔ)課件06形式化關(guān)系查詢語(yǔ)言_第2頁(yè)
山大數(shù)據(jù)庫(kù)系統(tǒng)英語(yǔ)課件06形式化關(guān)系查詢語(yǔ)言_第3頁(yè)
山大數(shù)據(jù)庫(kù)系統(tǒng)英語(yǔ)課件06形式化關(guān)系查詢語(yǔ)言_第4頁(yè)
山大數(shù)據(jù)庫(kù)系統(tǒng)英語(yǔ)課件06形式化關(guān)系查詢語(yǔ)言_第5頁(yè)
已閱讀5頁(yè),還剩83頁(yè)未讀, 繼續(xù)免費(fèi)閱讀

下載本文檔

版權(quán)說(shuō)明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)

文檔簡(jiǎn)介

1、Chapter 6: Formal Relational Query Languages Chapter 6: Formal Relational Query LanguagesRelational AlgebraTuple Relational CalculusDomain Relational CalculusRelational AlgebraProcedural languageSix basic operatorsselect: project: union: set difference: Cartesian product: xrename: The operators take

2、 one or two relations as inputs and produce a new relation as a result.Select Operation ExampleRelation rA=B D 5 (r)Select OperationNotation: p(r)p is called the selection predicateDefined as: p(r) = t | t r and p(t)Where p is a formula in propositional calculus consisting of terms connected by : (a

3、nd), (or), (not)Each term is one of:op or where op is one of: =, , , . . Example of selection: dept_name=“Physics”(instructor)Project Operation ExampleRelation r: A,C (r)Project OperationNotation:where A1, A2 are attribute names and r is a relation name.The result is defined as the relation of k col

4、umns obtained by erasing the columns that are not listedDuplicate rows removed from result, since relations are setsExample: To eliminate the dept_name attribute of instructor ID, name, salary (instructor) Union Operation Example Relations r, s:r s:Union OperationNotation: r sDefined as: r s = t | t

5、 r or t sFor r s to be valid.1. r, s must have the same arity (same number of attributes)2. The attribute domains must be compatible (example: 2nd column of r deals with the same type of values as does the 2nd column of s)Example: to find all courses taught in the Fall 2009 semester, or in the Sprin

6、g 2010 semester, or in both course_id ( semester=“Fall” year=2009 (section) course_id ( semester=“Spring” year=2010 (section)Set difference of two relationsRelations r, s:r s:Set Difference OperationNotation r sDefined as: r s = t | t r and t sSet differences must be taken between compatible relatio

7、ns.r and s must have the same arityattribute domains of r and s must be compatibleExample: to find all courses taught in the Fall 2009 semester, but not in the Spring 2010 semester course_id ( semester=“Fall” year=2009 (section) course_id ( semester=“Spring” year=2010 (section)Cartesian-Product Oper

8、ation ExampleRelations r, s:r x s:Cartesian-Product OperationNotation r x sDefined as:r x s = t q | t r and q sAssume that attributes of r(R) and s(S) are disjoint. (That is, R S = ).If attributes of r(R) and s(S) are not disjoint, then renaming must be used.Composition of OperationsCan build expres

9、sions using multiple operationsExample: A=C(r x s)r x sA=C(r x s)Rename OperationAllows us to name, and therefore to refer to, the results of relational-algebra expressions.Allows us to refer to a relation by more than one name.Example: x (E)returns the expression E under the name XIf a relational-a

10、lgebra expression E has arity n, then returns the result of expression E under the name X, and with theattributes renamed to A1 , A2 , ., An .Example QueryFind the largest salary in the universityStep 1: find instructor salaries that are less than some other instructor salary (i.e. not maximum)using

11、 a copy of instructor under a new name dinstructor.salary ( instructor.salary d,salary (instructor x d (instructor) Step 2: Find the largest salarysalary (instructor) instructor.salary ( instructor.salary d,salary (instructor x d (instructor) Example QueriesFind the names of all instructors in the P

12、hysics department, along with the course_id of all courses they have taughtQuery 1 instructor.ID,course_id (dept_name=“Physics” ( instructor.ID=teaches.ID (instructor x teaches)Query 2 instructor.ID,course_id (instructor.ID=teaches.ID ( dept_name=“Physics” (instructor) x teaches)Formal DefinitionA b

13、asic expression in the relational algebra consists of either one of the following:A relation in the databaseA constant relationLet E1 and E2 be relational-algebra expressions; the following are all relational-algebra expressions:E1 E2E1 E2E1 x E2p (E1), P is a predicate on attributes in E1s(E1), S i

14、s a list consisting of some of the attributes in E1 x (E1), x is the new name for the result of E1Additional OperationsWe define additional operations that do not add any power to therelational algebra, but that simplify common queries.Set intersectionNatural joinAssignmentOuter join Set-Intersectio

15、n OperationNotation: r sDefined as:r s = t | t r and t s Assume: r, s have the same arity attributes of r and s are compatibleNote: r s = r (r s)Set-Intersection Operation ExampleRelation r, s:r s Notation: r sNatural-Join OperationLet r and s be relations on schemas R and S respectively. Then, r s

16、is a relation on schema R S obtained as follows:Consider each pair of tuples tr from r and ts from s. If tr and ts have the same value on each of the attributes in R S, add a tuple t to the result, wheret has the same value as tr on rt has the same value as ts on sExample:R = (A, B, C, D)S = (E, B,

17、D)Result schema = (A, B, C, D, E)r s is defined as: r.A, r.B, r.C, r.D, s.E (r.B = s.B r.D = s.D (r x s)Natural Join ExampleRelations r, s:r sNatural Join and Theta JoinFind the names of all instructors in the Comp. Sci. department together with the course titles of all the courses that the instruct

18、ors teach name, title ( dept_name=“Comp. Sci.” (instructor teaches course)Natural join is associative(instructor teaches) course is equivalent toinstructor (teaches course)Natural join is commutativeinstruct teaches is equivalent toteaches instructorThe theta join operation r s is defined asr s = (r

19、 x s)Assignment OperationThe assignment operation () provides a convenient way to express complex queries. Write query as a sequential program consisting ofa series of assignments followed by an expression whose value is displayed as a result of the query.Assignment must always be made to a temporar

20、y relation variable.Outer JoinAn extension of the join operation that avoids loss of information.Computes the join and then adds tuples form one relation that does not match tuples in the other relation to the result of the join. Uses null values:null signifies that the value is unknown or does not

21、exist All comparisons involving null are (roughly speaking) false by definition.We shall study precise meaning of comparisons with nulls laterOuter Join ExampleRelation instructor1Relation teaches1IDcourse_id101011212176766CS-101FIN-201BIO-101Comp. Sci.FinanceMusicIDdept_name101011212115151nameSrini

22、vasanWuMozart Left Outer Join instructor teachesOuter Join ExampleJoin instructor teachesIDdept_name1010112121Comp. Sci.Financecourse_id CS-101 FIN-201nameSrinivasanWuIDdept_name101011212115151Comp. Sci.FinanceMusiccourse_id CS-101 FIN-201 nullnameSrinivasanWuMozartOuter Join Example Full Outer Join

23、 instructor teaches Right Outer Join instructor teachesIDdept_name101011212176766Comp. Sci.Financenullcourse_id CS-101 FIN-201 BIO-101nameSrinivasanWunullIDdept_name10101121211515176766Comp. Sci.FinanceMusicnullcourse_id CS-101 FIN-201 null BIO-101nameSrinivasanWuMozartnullOuter Join using JoinsOute

24、r join can be expressed using basic operationse.g. r s can be written as (r s) U (r R(r s) x (null, , null)Null ValuesIt is possible for tuples to have a null value, denoted by null, for some of their attributesnull signifies an unknown value or that a value does not exist.The result of any arithmet

25、ic expression involving null is null.Aggregate functions simply ignore null values (as in SQL)For duplicate elimination and grouping, null is treated like any other value, and two nulls are assumed to be the same (as in SQL)Null ValuesComparisons with null values return the special truth value: unkn

26、ownIf false was used instead of unknown, then not (A = 5Three-valued logic using the truth value unknown:OR: (unknown or true) = true, (unknown or false) = unknown (unknown or unknown) = unknownAND: (true and unknown) = unknown, (false and unknown) = false, (unknown and unknown) = unknownNOT: (not u

27、nknown) = unknownIn SQL “P is unknown” evaluates to true if predicate P evaluates to unknownResult of select predicate is treated as false if it evaluates to unknownDivision OperatorGiven relations r(R) and s(S), such that S R, r s is the largest relation t(R-S) such that t x s rE.g. let r(ID, cours

28、e_id) = ID, course_id (takes ) and s(course_id) = course_id (dept_name=“Biology”(course ) then r s gives us students who have taken all courses in the Biology departmentCan write r s as temp1 R-S (r ) temp2 R-S (temp1 x s ) R-S,S (r )result = temp1 temp2The result to the right of the is assigned to

29、the relation variable on the left of the .May use variable in subsequent expressions.Extended Relational-Algebra-OperationsGeneralized ProjectionAggregate FunctionsGeneralized ProjectionExtends the projection operation by allowing arithmetic functions to be used in the projection list.E is any relat

30、ional-algebra expressionEach of F1, F2, , Fn are are arithmetic expressions involving constants and attributes in the schema of E.Given relation instructor(ID, name, dept_name, salary) where salary is annual salary, get the same information but with monthly salary ID, name, dept_name, salary/12 (ins

31、tructor)Aggregate Functions and OperationsAggregation function takes a collection of values and returns a single value as a result.avg: average valuemin: minimum valuemax: maximum valuesum: sum of valuescount: number of valuesAggregate operation in relational algebra E is any relational-algebra expr

32、essionG1, G2 , Gn is a list of attributes on which to group (can be empty)Each Fi is an aggregate functionEach Ai is an attribute nameNote: Some books/articles use instead of (Calligraphic G)Aggregate Operation ExampleRelation r:ABC77310 sum(c) (r)sum(c )27Aggregate Operation ExampleFind the average

33、 salary in each department dept_name avg(salary) (instructor)avg_salaryAggregate Functions (Cont.)Result of aggregation does not have a nameCan use rename operation to give it a nameFor convenience, we permit renaming as part of aggregate operationdept_name avg(salary) as avg_sal (instructor)Modific

34、ation of the DatabaseThe content of the database may be modified using the following operations:DeletionInsertionUpdatingAll these operations can be expressed using the assignment operatorMultiset Relational AlgebraPure relational algebra removes all duplicates e.g. after projectionMultiset relation

35、al algebra retains duplicates, to match SQL semanticsSQL duplicate retention was initially for efficiency, but is now a featureMultiset relational algebra defined as followsselection: has as many duplicates of a tuple as in the input, if the tuple satisfies the selectionprojection: one tuple per inp

36、ut tuple, even if it is a duplicatecross product: If there are m copies of t1 in r, and n copies of t2 in s, there are m x n copies of t1.t2 in r x sOther operators similarly defined E.g. union: m + n copies, intersection: min(m, n) copies difference: min(0, m n) copiesSQL and Relational Algebrasele

37、ct A1, A2, . Anfrom r1, r2, , rmwhere P is equivalent to the following expression in multiset relational algebra A1, ., An ( P (r1 x r2 x . x rm)select A1, A2, sum(A3)from r1, r2, , rmwhere Pgroup by A1, A2 is equivalent to the following expression in multiset relational algebra A1, A2 sum(A3) ( P (

38、r1 x r2 x . x rm)SQL and Relational AlgebraMore generally, the non-aggregated attributes in the select clause may be a subset of the group by attributes, in which case the equivalence is as follows:select A1, sum(A3)from r1, r2, , rmwhere Pgroup by A1, A2 is equivalent to the following expression in

39、 multiset relational algebra A1,sumA3( A1,A2 sum(A3) as sumA3( P (r1 x r2 x . x rm)Tuple Relational CalculusTuple Relational CalculusA nonprocedural query language, where each query is of the formt | P (t ) It is the set of all tuples t such that predicate P is true for tt is a tuple variable, t A d

40、enotes the value of tuple t on attribute At r denotes that tuple t is in relation rP is a formula similar to that of the predicate calculusPredicate Calculus Formula1.Set of attributes and constants2.Set of comparison operators: (e.g., , , , , , )3.Set of connectives: and (), or (v) not ()4.Implicat

41、ion (): x y, if x if true, then y is truex y x v y5.Set of quantifiers:t r (Q (t ) ”there exists” a tuple in t in relation r such that predicate Q (t ) is truet r (Q (t ) Q is true “for all” tuples t in relation rExample QueriesFind the ID, name, dept_name, salary for instructors whose salary is gre

42、ater than $80,000 As in the previous query, but output only the ID attribute value t | s instructor (t ID = s ID s salary 80000) Notice that a relation on schema (ID) is implicitly defined by the queryt | t instructor t salary 80000Example QueriesFind the names of all instructors whose department is

43、 in the Watson buildingt | s section (t course_id = s course_id s semester = “Fall” s year = 2009 v u section (t course_id = u course_id u semester = “Spring” u year = 2010) Find the set of all courses taught in the Fall 2009 semester, or in the Spring 2010 semester, or botht | s instructor (t name

44、= s name u department (u dept_name = sdept_name “ u building = “Watson” )Example Queriest | s section (t course_id = s course_id s semester = “Fall” s year = 2009 u section (t course_id = u course_id u semester = “Spring” u year = 2010) Find the set of all courses taught in the Fall 2009 semester, a

45、nd in the Spring 2010 semestert | s section (t course_id = s course_id s semester = “Fall” s year = 2009 u section (t course_id = u course_id u semester = “Spring” u year = 2010) Find the set of all courses taught in the Fall 2009 semester, but not in the Spring 2010 semesterSafety of ExpressionsIt

46、is possible to write tuple calculus expressions that generate infinite relations.For example, t | t r results in an infinite relation if the domain of any attribute of relation r is infiniteTo guard against the problem, we restrict the set of allowable expressions to safe expressions.An expression t

47、 | P (t ) in the tuple relational calculus is safe if every component of t appears in one of the relations, tuples, or constants that appear in PNOTE: this is more than just a syntax condition. E.g. t | t A = 5 true is not safe it defines an infinite set with attribute values that do not appear in a

48、ny relation or tuples or constants in P. Universal QuantificationFind all students who have taken all courses offered in the Biology department t | r student (t ID = r ID) ( u course (u dept_name=“Biology” s takes (t ID = s ID s course_id = u course_id)Note that without the existential quantificatio

49、n on student, the above query would be unsafe if the Biology department has not offered any courses. Domain Relational CalculusDomain Relational CalculusA nonprocedural query language equivalent in power to the tuple relational calculusEach query is an expression of the form: x1, x2, , xn | P (x1, x

50、2, , xn)x1, x2, , xn represent domain variablesP represents a formula similar to that of the predicate calculusExample QueriesFind the ID, name, dept_name, salary for instructors whose salary is greater than $80,000 | instructor s 80000 As in the previous query, but output only the ID attribute valu

51、e | instructor s 80000Find the names of all instructors whose department is in the Watson building | i, d, s ( instructor b, a ( department b = “Watson” )Example Queries | a, s, y, b, r, t ( section s = “Fall” y = 2009 ) v a, s, y, b, r, t ( section s = “Spring” y = 2010) Find the set of all courses

52、 taught in the Fall 2009 semester, or in the Spring 2010 semester, or bothThis case can also be written as | a, s, y, b, r, t ( section ( (s = “Fall” y = 2009 ) v (s = “Spring” y = 2010) Find the set of all courses taught in the Fall 2009 semester, and in the Spring 2010 semester | a, s, y, b, r, t

53、( section s = “Fall” y = 2009 ) a, s, y, b, r, t ( section s = “Spring” y = 2010)Safety of ExpressionsThe expression: x1, x2, , xn | P (x1, x2, , xn )is safe if all of the following hold:All values that appear in tuples of the expression are values from dom (P ) (that is, the values appear either in

54、 P or in a tuple of a relation mentioned in P ).For every “there exists” subformula of the form x (P1(x ), the subformula is true if and only if there is a value of x in dom (P1)such that P1(x ) is true.For every “for all” subformula of the form x (P1 (x ), the subformula is true if and only if P1(x

55、 ) is true for all values x from dom (P1).Universal QuantificationFind all students who have taken all courses offered in the Biology department | n, d, tc ( student ( ci, ti, dn, cr ( course dn =“Biology” si, se, y, g ( takes )Note that without the existential quantification on student, the above q

56、uery would be unsafe if the Biology department has not offered any courses. * Above query fixes bug in page 246, last queryEnd of Chapter 6Figure 6.01Figure 6.02Figure 6.03Figure 6.04Figure 6.05Figure 6.06Figure 6.07Figure 6.08Figure 6.09Figure 6.10Figure 6.11Figure 6.12Figure 6.13Figure 6.14Figure

57、6.15Figure 6.16Figure 6.17Figure 6.18Figure 6.19Figure 6.20Figure 6.21DeletionA delete request is expressed similarly to a query, except instead of displaying tuples to the user, the selected tuples are removed from the database.Can delete only whole tuples; cannot delete values on only particular a

58、ttributesA deletion is expressed in relational algebra by:r r Ewhere r is a relation and E is a relational algebra query.Deletion ExamplesDelete all account records in the Perryridge branch. Delete all accounts at branches located in Needham.r1 branch_city = “Needham” (account branch )r2 account_num

59、ber, branch_name, balance (r1)r3 customer_name, account_number (r2 depositor)account account r2depositor depositor r3 Delete all loan records with amount in the range of 0 to 50loan loan amount 0and amount 50 (loan)account account branch_name = “Perryridge” (account )InsertionTo insert data into a r

60、elation, we either:specify a tuple to be insertedwrite a query whose result is a set of tuples to be insertedin relational algebra, an insertion is expressed by:r r Ewhere r is a relation and E is a relational algebra expression.The insertion of a single tuple is expressed by letting E be a constant

溫馨提示

  • 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒(méi)有圖紙預(yù)覽就沒(méi)有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。

評(píng)論

0/150

提交評(píng)論