Presentation is loading. Please wait.

Presentation is loading. Please wait.

1 Relational Algebra. Motivation Write a Java program Translate it into a program in assembly language Execute the assembly language program As a rough.

Similar presentations


Presentation on theme: "1 Relational Algebra. Motivation Write a Java program Translate it into a program in assembly language Execute the assembly language program As a rough."— Presentation transcript:

1 1 Relational Algebra

2 Motivation Write a Java program Translate it into a program in assembly language Execute the assembly language program As a rough analogy, here we write a SQL query Translate it into a program in relational algebra language Execute the program 2

3 3 Example Sells(bar,beer,price )Bars(bar,addr ) Joe’sBud2.50Joe’sMaple St. Joe’sMiller2.75Sue’sRiver Rd. Sue’sBud2.50 Sue’sCoors3.00 Query: Find all locations that sell beer for less than 2.75. Select addr From Sells, Bars Where (Sells.bar = Bars.bar) and (Sells.price < 2.75)

4 4 Translating into a program in RA Sells Bars JOIN Sells.bar = Bars.bar PROJECT Bars.addr SELECT Sells.price < 2.75

5 5 Relational Algebra at a Glance Operators: relations as input, new relation as output Five basic RA operations: –Basic Set Operations union, difference (no intersection, no complement) –Selection:  –Projection:  –Cartesian Product: X When our relations have attribute names: –Renaming:  Derived operations: –Intersection, complement –Joins (natural,equi-join, theta join, semi-join)

6 6 Five Basic RA Operations

7 7 Set Operations Union, difference Binary operations

8 8 Set Operations: Union Union: all tuples in R1 or R2 Notation: R1 U R2 R1, R2 must have the same schema R1 U R2 has the same schema as R1, R2 Example: –ActiveEmployees U RetiredEmployees

9 9 Set Operations: Difference Difference: all tuples in R1 and not in R2 Notation: R1 – R2 R1, R2 must have the same schema R1 - R2 has the same schema as R1, R2 Example –AllEmployees - RetiredEmployees

10 10 Selection Returns all tuples which satisfy a condition Notation:  c (R) c is a condition: =,, and, or, not Output schema: same as input schema Find all employees with salary more than $40,000: –  Salary > 40000 (Employee)

11 11 Find all employees with salary more than $40,000.  Salary > 40000 (Employee)

12 12 Ullman: Selection R1 := SELECT C (R2) –C is a condition (as in “if” statements) that refers to attributes of R2. –R1 is all those tuples of R2 that satisfy C.

13 13 Example Relation Sells: barbeerprice Joe’sBud2.50 Joe’sMiller2.75 Sue’sBud2.50 Sue’sMiller3.00 JoeMenu := SELECT bar=“Joe’s” (Sells): barbeerprice Joe’sBud2.50 Joe’sMiller2.75

14 14 Projection Unary operation: returns certain columns Eliminates duplicate tuples ! Notation:  A1,…,An (R) Input schema R(B1,…,Bm) Condition: {A1, …, An} {B1, …, Bm} Output schema S(A1,…,An) Example: project social-security number and names: –  SSN, Name (Employee)

15 15  SSN, Name (Employee)

16 16 Projection R1 := PROJ L (R2) –L is a list of attributes from the schema of R2. –R1 is constructed by looking at each tuple of R2, extracting the attributes on list L, in the order specified, and creating from those components a tuple for R1. –Eliminate duplicate tuples, if any.

17 17 Example Relation Sells: barbeerprice Joe’sBud2.50 Joe’sMiller2.75 Sue’sBud2.50 Sue’sMiller3.00 Prices := PROJ beer,price (Sells): beerprice Bud2.50 Miller2.75 Miller3.00

18 18 Cartesian Product Each tuple in R1 with each tuple in R2 Notation: R1 x R2 Input schemas R1(A1,…,An), R2(B1,…,Bm) Condition: {A1,…,An} {B1,…Bm} =  Output schema is S(A1, …, An, B1, …, Bm) Notation: R1 x R2 Example: Employee x Dependents Very rare in practice; but joins are very common

19 19

20 20 Product R3 := R1 * R2 –Pair each tuple t1 of R1 with each tuple t2 of R2. –Concatenation t1t2 is a tuple of R3. –Schema of R3 is the attributes of R1 and R2, in order. –But beware attribute A of the same name in R1 and R2: use R1.A and R2.A.

21 21 Example: R3 := R1 * R2 R1(A,B ) 12 34 R2(B,C ) 56 78 910 R3(A,R1.B,R2.B,C ) 1256 1278 12910 3456 3478 34910

22 22 Renaming Does not change the relational instance Changes the relational schema only Notation:  B1,…,Bn (R) Input schema: R(A1, …, An) Output schema: S(B1, …, Bn) Example:  LastName, SocSocNo (Employee)

23 23 Renaming Example Employee NameSSN John999999999 Tony777777777 LastNameSocSocNo John999999999 Tony777777777  LastName, SocSocNo (Employee)

24 24 Renaming The RENAME operator gives a new schema to a relation. R1 := RENAME R1(A1,…,An) (R2) makes R1 be a relation with attributes A1,…,An and the same tuples as R2. Simplified notation: R1(A1,…,An) := R2.

25 25 Example Bars(name, addr ) Joe’sMaple St. Sue’sRiver Rd. R(bar, addr ) Joe’sMaple St. Sue’sRiver Rd. R(bar, addr) := Bars

26 26 Derived RA Operations 1) Intersection 2) Most importantly: Join

27 27 Set Operations: Intersection All tuples both in R1 and in R2 Notation: R1 R2 R1, R2 must have the same schema R1 R2 has the same schema as R1, R2 Example –UnionizedEmployees RetiredEmployees Intersection is derived: –R1 R2 = R1 – (R1 – R2) why ?

28 28 Joins Theta join Natural join Equi-join Semi-join Inner join Outer join etc.

29 29 Theta Join A join that involves a predicate Notation: R1  R2 where  is a condition Input schemas: R1(A1,…,An), R2(B1,…,Bm) {A1,…An} {B1,…,Bm} =  Output schema: S(A1,…,An,B1,…,Bm) Derived operator: R1  R2 =   (R1 x R2)

30 30 Theta-Join R3 := R1 JOIN C R2 –Take the product R1 * R2. –Then apply SELECT C to the result. As for SELECT, C can be any boolean-valued condition. –Historic versions of this operator allowed only A theta B, where theta was =, <, etc.; hence the name “theta- join.”

31 31 Example Sells(bar,beer,price )Bars(name,addr ) Joe’sBud2.50Joe’sMaple St. Joe’sMiller2.75Sue’sRiver Rd. Sue’sBud2.50 Sue’sCoors3.00 BarInfo := Sells JOIN Sells.bar = Bars.name Bars BarInfo(bar,beer,price,name,addr ) Joe’sBud2.50Joe’sMaple St. Joe’sMiller2.75Joe’sMaple St. Sue’sBud2.50Sue’sRiver Rd. Sue’sCoors3.00Sue’sRiver Rd.

32 32 Natural Join Notation: R1 R2 Input Schema: R1(A1, …, An), R2(B1, …, Bm) Output Schema: S(C1,…,Cp) –Where {C1, …, Cp} = {A1, …, An} U {B1, …, Bm} Meaning: combine all pairs of tuples in R1 and R2 that agree on the attributes: –{A1,…,An} {B1,…, Bm} (called the join attributes) Equivalent to a cross product followed by selection Example Employee Dependents

33 33 Natural Join Example Employee NameSSN John999999999 Tony777777777 Dependents SSNDname 999999999Emily 777777777Joe NameSSNDname John999999999Emily Tony777777777Joe Employee Dependents =  Name, SSN, Dname (  SSN=SSN2 (Employee x  SSN2, Dname (Dependents))

34 34 Natural Join R= S= R S = AB XY XZ YZ ZV BC ZU VW ZV ABC XZU XZV YZU YZV ZVW

35 35 Natural Join Given the schemas R(A, B, C, D), S(A, C, E), what is the schema of R S ? Given R(A, B, C), S(D, E), what is R S ? Given R(A, B), S(A, B), what is R S ?

36 36 Natural Join A frequent type of join connects two relations by: –Equating attributes of the same name, and –Projecting out one copy of each pair of equated attributes. Called natural join. Denoted R3 := R1 JOIN R2.

37 37 Example Sells(bar,beer,price )Bars(bar,addr ) Joe’sBud2.50Joe’sMaple St. Joe’sMiller2.75Sue’sRiver Rd. Sue’sBud2.50 Sue’sCoors3.00 BarInfo := Sells JOIN Bars Note Bars.name has become Bars.bar to make the natural join “work.” BarInfo(bar,beer,price,addr ) Joe’sBud2.50Maple St. Joe’sMilller2.75Maple St. Sue’sBud2.50River Rd. Sue’sCoors3.00River Rd.

38 38 Equi-join Most frequently used in practice: R1  R2 Natural join is a particular case of equi-join A lot of research on how to do it efficiently

39 39 Semijoin R S =  A1,…,An (R S) Where the schemas are: –Input: R(A1,…An), S(B1,…,Bm) –Output: T(A1,…,An)

40 40 Semijoin Applications in distributed databases: Product(pid, cid, pname,...) at site 1 Company(cid, cname,...) at site 2 Query:  price>1000 (Product) cid=cid Company Compute as follows: T1 =  price>1000 (Product) site 1 T2 = P cid (T1) site 1 send T2 to site 2 (T2 smaller than T1) T3 = T2 Company site 2 (semijoin) send T3 to site 1 (T3 smaller than Company) Answer = T3 T1 site 1 (semijoin)

41 41 Joins Theta join Natural join Equi-join Semi-join Inner join Outer join etc.

42 42 Relational Algebra at a Glance Operators: relations as input, new relation as output Five basic RA operations: –Basic Set Operations union, difference (no intersection, no complement) –Selection:  –Projection:  –Cartesian Product: X When our relations have attribute names: –Renaming:  Derived operations: –Intersection, complement –Joins (natural,equi-join, theta join, semi-join)

43 43 Building Complex Expressions Example –in arithmetic algebra: (x + 4)*(y - 3) Relational algebra allows the same. That is, we can build complex expressions using relational algebra operators Three notations, just as in arithmetic: 1.Sequences of assignment statements. 2.Expressions with several operators. 3.Expression trees.

44 44 Sequences of Assignments Create temporary relation names. Renaming can be implied by giving relations a list of attributes. Example: R3 := R1 JOIN C R2 can be written: R4 := R1 * R2 R3 := SELECT C (R4)

45 45 Expressions with Several Operators Example: the theta-join R3 := R1 JOIN C R2 can be written: R3 := SELECT C (R1 * R2) Precedence of relational operators: 1.Unary operators --- select, project, rename --- have highest precedence, bind first. 2.Then come products and joins. 3.Then intersection. 4.Finally, union and set difference bind last. wBut you can always insert parentheses to force the order you desire.

46 46 Expression Trees Leaves are operands --- either variables standing for relations or particular, constant relations. Interior nodes are operators, applied to their child or children.

47 47 Example Using the relations Bars(name, addr) and Sells(bar, beer, price), find the names of all the bars that are either on Maple St. or sell Bud for less than $3. Sells(bar,beer,price )Bars(name,addr ) Joe’sBud2.50Joe’sMaple St. Joe’sMiller2.75Sue’sRiver Rd. Sue’sBud2.50 Sue’sCoors3.00

48 48 As a Tree: BarsSells SELECT addr = “Maple St.” SELECT price<3 AND beer=“Bud” PROJECT name RENAME R(name) PROJECT bar UNION Using the relations Bars(name, addr) and Sells(bar, beer, price), find the names of all the bars that are either on Maple St. or sell Bud for less than $3. name Joe’s nameaddress Joe’sMaple St. name Joe’s Sue’s barbeerprice Joe’sBud2.5 Sue’sBud2.5 bar Joe’s Sue’s

49 49 Example Using Sells(bar, beer, price), find the bars that sell two different beers at the same price. Sells(bar,beer,price ) Joe’sBud2.50 Joe’sMiller2.75 Sue’sBud2.50 Joe’sCoors2.50

50 50 Strategy Sells natural-join S = (bar, beer, beer1, price) –need a selection condition though. What is it? Sells(bar,beer,price ) Joe’sBud2.50 Joe’sMiller2.75 Sue’sBud2.50 Joe’sCoors2.50 S(bar,beer1,price ) Joe’sBud2.50 Joe’sMiller2.75 Sue’sBud2.50 Joe’sCoors2.50 Using Sells(bar, beer, price), find the bars that sell two different beers at the same price.

51 51 Strategy Summary By renaming, define a copy of Sells, called S(bar, beer1, price). The natural join of Sells and S consists of quadruples (bar, beer, beer1, price) such that the bar sells both beers at this price.

52 52 The Tree Sells RENAME S(bar, beer1, price) JOIN PROJECT bar SELECT beer != beer1

53 53 Complex Queries Product ( pid, name, price, category, maker-cid) Purchase (buyer-ssn, seller-ssn, store, pid) Company (cid, name, stock price, country) Person(ssn, name, phone, city) Find phone numbers of people who bought gizmos from Fred. Find telephony products that somebody bought

54 54 Expression Tree Person Purchase Person Product  name=fred  name=gizmo  pid  ssn seller-ssn=ssnpid=pidbuyer-ssn=ssn  phone

55 55 Exercises Product ( pid, name, price, category, maker-cid) Purchase (buyer-ssn, seller-ssn, store, pid) Company (cid, name, stock price, country) Person(ssn, name, phone number, city) Ex #1: Find people who bought telephony products. Ex #2: Find names of people who bought American products

56 56 Exercises Product ( pid, name, price, category, maker-cid) Purchase (buyer-ssn, seller-ssn, store, pid) Company (cid, name, stock price, country) Person(ssn, name, phone number, city) Ex #3: Find names of people who bought American products and did not buy French products Ex #4: Find names of people who bought American products and they live in Madison.

57 57 Exercises Product ( pid, name, price, category, maker-cid) Purchase (buyer-ssn, seller-ssn, store, pid) Company (cid, name, stock price, country) Person(ssn, name, phone number, city) Ex #5: Find people who bought stuff from Joe or bought products from a company whose stock prices is more than $50.

58 58 Operations on Bags (and why we care) Union: {a,b,b,c} U {a,b,b,b,e,f,f} = {a,a,b,b,b,b,b,c,e,f,f} –add the number of occurrences Difference: {a,b,b,b,c,c} – {b,c,c,c,d} = {a,b,b,d} –subtract the number of occurrences Intersection: {a,b,b,b,c,c} {b,b,c,c,c,c,d} = {b,b,c,c} –minimum of the two numbers of occurrences Selection: preserve the number of occurrences Projection: preserve the number of occurrences (no duplicate elimination) Cartesian product, join: no duplicate elimination

59 59 Summary of Relational Algebra Why bother ? Can write any RA expression directly in C++/Java, seems easy. Two reasons: –Each operator admits sophisticated implementations (think of,  C ) –Expressions in relational algebra can be rewritten: optimized

60 60 Example Sells(bar,beer,price )Bars(bar,addr ) Joe’sBud2.50Joe’sMaple St. Joe’sMiller2.75Sue’sRiver Rd. Sue’sBud2.50 Sue’sCoors3.00 Query: Find all locations that sell beer for less than 2.75. Select addr From Sells, Bars Where (Sells.bar = Bars.bar) and (Sells.price < 2.75)

61 61 Example Sells Bars JOIN Sells.bar = Bars.bar PROJECT Bars.addr SELECT Sells.price < 2.75

62 62 What is an “Algebra” Mathematical system consisting of: –Operands --- variables or values from which new values can be constructed. –Operators --- symbols denoting procedures that construct new values from given values.

63 63 What is Relational Algebra? An algebra whose operands are relations or variables that represent relations. Operators are designed to do the most common things that we need to do with relations in a database. –The result is an algebra that can be used as a query language for relations.

64 64 Glimpse Ahead: Efficient Implementations of Operators  (age >= 30 AND age <= 35) (Employees) –Method 1: scan the file, test each employee –Method 2: use an index on age –Which one is better ? Depends a lot… Employees Relatives –Iterate over Employees, then over Relatives –Iterate over Relatives, then over Employees –Sort Employees, Relatives, do “merge-join” –“hash-join” –etc

65 65 Glimpse Ahead: Optimizations Product ( pid, name, price, category, maker-cid) Purchase (buyer-ssn, seller-ssn, store, pid) Person(ssn, name, phone number, city) Which is better:  price>100 (Product) (Purchase  city=sea Person)  price>100 (Product) Purchase)  city=sea Person Depends ! This is the optimizer’s job…

66 66 Finally: RA has Limitations ! Cannot compute “transitive closure” Find all direct and indirect relatives of Fred Cannot express in RA !!! Need to write C program Name1Name2Relationship FredMaryFather MaryJoeCousin MaryBillSpouse NancyLouSister

67 Apply the Lessons You Have Learned Suppose you work at Facebook Now in charge of helping FB applications manage the FB friendship graph What should you do? 67


Download ppt "1 Relational Algebra. Motivation Write a Java program Translate it into a program in assembly language Execute the assembly language program As a rough."

Similar presentations


Ads by Google