Presentation is loading. Please wait.

Presentation is loading. Please wait.

Chapter 7 Relational Algebra. Copyright © 2004 Pearson Addison-Wesley. All rights reserved.7-2 Topics in this Chapter Closure Revisited The Original Algebra:

Similar presentations


Presentation on theme: "Chapter 7 Relational Algebra. Copyright © 2004 Pearson Addison-Wesley. All rights reserved.7-2 Topics in this Chapter Closure Revisited The Original Algebra:"— Presentation transcript:

1 Chapter 7 Relational Algebra

2 Copyright © 2004 Pearson Addison-Wesley. All rights reserved.7-2 Topics in this Chapter Closure Revisited The Original Algebra: Syntax and Semantics What is the Algebra For? Further Points and Additional Operators Grouping and Ungrouping

3 Copyright © 2004 Pearson Addison-Wesley. All rights reserved.7-3 Relational Algebra The relational algebra is a collection of operators that take relations as their operands and return a relation as their result Eight operators, in two groups of four Union, intersect, difference, Cartesian product Restrict, project, join, divide The set of possible relational operators is essentially unlimited The operators are “read only”

4 Copyright © 2004 Pearson Addison-Wesley. All rights reserved.7-4 Closure Revisited The output from any relational operator is another relation: the closure property Relational expressions can be nested (analogously to arithmetic expressions) Every relation has a head and a body; relational algebra must address both Attribute type inference must be supported RENAME changes the name of an attribute without changing its type or content

5 Copyright © 2004 Pearson Addison-Wesley. All rights reserved.7-5 The Syntax of the Original Algebra Each operator returns a relation, and operates on a relation Each operator assigns a relation value to the new relation, based on alterations to the tables being operated upon Generically: := RELATION { }

6 Copyright © 2004 Pearson Addison-Wesley. All rights reserved.7-6 The Syntax of the Original Algebra – General Format := RELATION { } | | -- “relation operator invoked” | -- “with expression” | | ( )

7 Copyright © 2004 Pearson Addison-Wesley. All rights reserved.7-7 Semantics of the Original Algebra – Union Union operates on two sets and returns a set that contains all elements belonging to either Both sets must be of the same type - formerly known as union compatibility Relations cannot have duplicate tuples; we say loosely that UNION “eliminates duplicates”

8 Copyright © 2004 Pearson Addison-Wesley. All rights reserved.7-8 Semantics of the Original Algebra – Intersect and Difference Intersect operates on two sets and returns a set that contains all tuples belonging to both Difference operates on two sets and returns a set containing all tuples occuring in one but not the other, using MINUS For both Intersect and Difference, the sets operated upon must be of the same type - formerly known as union compatibility

9 Copyright © 2004 Pearson Addison-Wesley. All rights reserved.7-9 Semantics of the Original Algebra – Cartesian Product A Cartesian Product is the set of all ordered pairs such that in each pair, the first element comes from the first set, and the second element comes from the second set However, since the result of a relational operator is a relation, the result of each pair is a single tuple containing all the elements of both of the source tuples Uses keyword TIMES

10 Copyright © 2004 Pearson Addison-Wesley. All rights reserved.7-10 Semantics of the Original Algebra – Restrict Yields a horizontal subset – a/k/a “SELECT” a WHERE p p is called the restriction condition p is a predicate, and returns boolean If it can be evaluated by examining a single tuple it is simple; otherwise it is nonsimple

11 Copyright © 2004 Pearson Addison-Wesley. All rights reserved.7-11 Semantics of the Original Algebra – Project Yields a vertical subset The general form is a commalist of attributes to be kept in the result For all attributes kept, all tuples are kept An alternative specification is to name the attributes to be excluded: P { ALL BUT WEIGHT}

12 Copyright © 2004 Pearson Addison-Wesley. All rights reserved.7-12 Semantics of the Original Algebra – Join – Natural Join When unqualified, join means “natural join” For any two relations with at least one matching attribute, the join operator returns a relation with a single tuple of all the attributes for each match Attributes that do not match from each source relation are retained If no attributes match, result is a Cartesian product If all attributes match, result is an Intersect

13 Copyright © 2004 Pearson Addison-Wesley. All rights reserved.7-13 Semantics of the Original Algebra – Join – Theta Join Used to join relations based on matching attributes, where the values are not equal Given relations a and b, and attributes X and Y, this can be expressed as follows: (a TIMES b) WHERE X theta Y When theta is set to = the result can be made to be that of natural join (project away the duplicate attribute, and rename the kept one)

14 Copyright © 2004 Pearson Addison-Wesley. All rights reserved.7-14 Semantics of the Original Algebra – Divide Used to “divide one relation into another” Small Divide uses one relation expression as divisor, Great Divide uses two For small divide: a DIVIDEDBY b PER c where a is the dividend, b is the divisor, and c is the mediator Used to determine who in a relates to the complete set in b

15 Copyright © 2004 Pearson Addison-Wesley. All rights reserved.7-15 Semantics of the Original Algebra – Divide - Example Let S be a relation of suppliers, P one of parts, and SP the mediator S JOIN ( S {S#} DIVIDEDBY P {p#} PER SP {S#, P#} ) Will return a relation with suppliers who supply all parts, only This represents an improvement in clarity over the original formulation of DIVIDE

16 Copyright © 2004 Pearson Addison-Wesley. All rights reserved.7-16 What is the Algebra for? The purpose of the algebra is to allow the writing of relational expressions Applications of the algebra: retrieval, update, defining integrity constraints, derived relvars, stability and security An implemented language can be said to be relationally complete if it is at least as powerful as the algebra

17 Copyright © 2004 Pearson Addison-Wesley. All rights reserved.7-17 The Original Algebra Many operators are associative: Union, intersect, times, join, but not minus Many operators are commutative: Union, intersect, times, join, but not minus Join, union, intersect were originally defined as dyadic, but are now seen to operate on any number of relations, including DEE and DUM

18 Copyright © 2004 Pearson Addison-Wesley. All rights reserved.7-18 Additional Relational Operators Semijoin is used to perform a partial join based on restrictions (Join for a specific part number, for example) Semidifference is similar (Obtain suppliers who do not supply a particular part, e.g.) Extend adds an attribute dynamically, but does not alter the underlying relvar Summarize performs vertical or attribute-wise computations

19 Copyright © 2004 Pearson Addison-Wesley. All rights reserved.7-19 Grouping… Required because relations can have attributes that are themselves relations Provides a map between such relations and “flat” relations SP GROUP {P#, QTY} AS PQ Will return quantities of parts by supplier, which is the unnamed co-conspirator

20 Copyright © 2004 Pearson Addison-Wesley. All rights reserved.7-20 …and Ungrouping Returns the original relation In the example, the original SP relation If you group, you can always ungroup, but the converse is not necessarily true This occurs when the relations being ungrouped were not validly grouped in the first place


Download ppt "Chapter 7 Relational Algebra. Copyright © 2004 Pearson Addison-Wesley. All rights reserved.7-2 Topics in this Chapter Closure Revisited The Original Algebra:"

Similar presentations


Ads by Google