SlideShare a Scribd company logo
Relational Algebra
Relational Query Languages
 Query languages: Allow manipulation and retrieval
of data from a database.
 Relational model supports simple, powerful QLs:
– Strong formal foundation based on logic.
– Allows for much optimization.
 Query Languages != programming languages!
– QLs not expected to be “Turing complete”.
– QLs not intended to be used for complex calculations.
– QLs support easy, efficient access to large data sets.
Formal Relational Query Languages
Two mathematical Query Languages form the
basis for “real” languages (e.g. SQL), and for
implementation:
 Relational Algebra: More operational, very
useful for representing execution plans.
 Relational Calculus: Lets users describe what
they want, rather than how to compute it.
(Non-operational, declarative.)
 Understanding Algebra & Calculus is key to
 understanding SQL, query processing!
Preliminaries
 A query is applied to relation instances, and the
result of a query is also a relation instance.
– Schemas of input relations for a query are fixed (but
query will run regardless of instance!)
– The schema for the result of a given query is also
fixed! Determined by definition of query language
constructs.
 Positional vs. named-field notation:
– Positional notation easier for formal definitions,
named-field notation more readable.
– Both used in Relational Algebra and SQL
Example Instances
sid sname rating age
22 dustin 7 45.0
31 lubber 8 55.5
58 rusty 10 35.0
sid sname rating age
28 yuppy 9 35.0
31 lubber 8 55.5
44 guppy 5 35.0
58 rusty 10 35.0
sid bid day
22 101 10/10/96
58 103 11/12/96
R1
S1
S2
 “Sailors” and “Reserves”
relations for our examples.
 We’ll use positional or
named field notation,
assume that names of fields
in query results are
`inherited’ from names of
fields in query input
relations.
Relational Algebra
 Basic operations:
– Selection ( ) Selects a subset of rows from relation.
– Projection ( ) Deletes unwanted columns from relation.
– Cross-product ( ) Allows us to combine two relations.
– Set-difference ( ) Tuples in reln. 1, but not in reln. 2.
– Union (  ) Tuples in reln. 1 and in reln. 2.
 Additional operations:
– Intersection, join, division, renaming: Not essential, but (very!) useful.
 Since each operation returns a relation, operations can be
composed! (Algebra is “closed”.)




Projection
sname rating
yuppy 9
lubber 8
guppy 5
rusty 10
sname rating
S
,
( )
2
age
35.0
55.5
age S
( )
2
 Deletes attributes that are not in
projection list.
 Schema of result contains exactly
the fields in the projection list,
with the same names that they
had in the (only) input relation.
 Projection operator has to
eliminate duplicates! (Why??)
– Note: real systems typically
don’t do duplicate elimination
unless the user explicitly asks
for it. (Why not?)
Selection
rating
S
8
2
( )
sid sname rating age
28 yuppy 9 35.0
58 rusty 10 35.0
sname rating
yuppy 9
rusty 10
 
sname rating rating
S
,
( ( ))
8
2
 Selects rows that satisfy
selection condition.
 No duplicates in result!
(Why?)
 Schema of result identical
to schema of (only) input
relation.
 Result relation can be the
input for another
relational algebra
operation! (Operator
composition.)
Union, Intersection, Set-Difference
 All of these operations take
two input relations, which
must be union-compatible:
– Same number of fields.
– `Corresponding’ fields
have the same type.
 What is the schema of result?
sid sname rating age
22 dustin 7 45.0
31 lubber 8 55.5
58 rusty 10 35.0
44 guppy 5 35.0
28 yuppy 9 35.0
sid sname rating age
31 lubber 8 55.5
58 rusty 10 35.0
S S
1 2

S S
1 2

sid sname rating age
22 dustin 7 45.0
S S
1 2

1
Cross-Product
 Each row of S1 is paired with each row of R1.
 Result schema has one field per field of S1 and R1,
with field names `inherited’ if possible.
– Conflict: Both S1 and R1 have a field called sid.
 ( ( , ), )
C sid sid S R
1 1 5 2 1 1
  
(sid) sname rating age (sid) bid day
22 dustin 7 45.0 22 101 10/10/96
22 dustin 7 45.0 58 103 11/12/96
31 lubber 8 55.5 22 101 10/10/96
31 lubber 8 55.5 58 103 11/12/96
58 rusty 10 35.0 22 101 10/10/96
58 rusty 10 35.0 58 103 11/12/96
 Renaming operator:
1
Joins
 Condition Join: R C S = C (R  S)
S1 S1.sid < R1.sid R1
 Result schema same as that of cross-product.
 Fewer tuples than cross-product, might be able to compute
more efficiently
 Sometimes called a theta-join.
(sid) sname rating age (sid) bid day
22 dustin 7 45.0 58 103 11/12/96
31 lubber 8 55.5 58 103 11/12/96
1
Joins
 Equi-Join: A special case of condition join where
the condition c contains only equalities and ^.
S1 sid R1
 Result schema similar to cross-product, but only
one copy of fields for which equality is specified.
 Natural Join: Equijoin on all common fields.
sid sname rating age bid day
22 dustin 7 45.0 101 10/10/96
58 rusty 10 35.0 103 11/12/96
1
Find names of sailors who’ve reserved boat #103
 Solution 1:  
sname bid
serves Sailors
(( Re ) )
103

 Solution 2:  
( , Re )
Temp serves
bid
1
103

 ( , )
Temp Temp Sailors
2 1
 sname Temp
( )
2
 Solution 3:  
sname bid
serves Sailors
( (Re ))
103

1
Find names of sailors who’ve reserved a red boat
 Information about boat color only available in
Boats; so need an extra join:
 
sname color red
Boats serves Sailors
((
' '
) Re )

 
 A more efficient solution:
   
sname sid bid color red
Boats s Sailors
( ((
' '
) Re ) )

 
 A query optimizer can find this given the first solution!
1
Find sailors who’ve reserved a red or a green boat
 Can identify all red or green boats, then find
sailors who’ve reserved one of these boats:
 
( ,(
' ' ' '
))
Tempboats
color red color green
Boats
  
 sname Tempboats serves Sailors
( Re )
 
 Can also define Tempboats using union! (How?)
 What happens if is replaced by in this query?
 
1
Find sailors who’ve reserved a red and a green boat
 Previous approach won’t work! Must identify
sailors who’ve reserved red boats, sailors
who’ve reserved green boats, then find the
intersection (note that sid is a key for Sailors):
  
( , ((
' '
) Re ))
Tempred
sid color red
Boats serves


 sname Tempred Tempgreen Sailors
(( ) )
 
  
( , ((
' '
) Re ))
Tempgreen
sid color green
Boats serves


1
Relational Calculus
1
Relational Calculus
 Comes in two flavors: Tuple relational calculus (TRC)
and Domain relational calculus (DRC).
 Calculus has variables, constants, comparison ops, logical
connectives, and quantifiers.
– TRC: Variables range over (i.e., get bound to) tuples.
– DRC: Variables range over domain elements (= field values).
– Both TRC and DRC are simple subsets of first-order logic.
 Expressions in the calculus are called formulas. An
answer tuple is essentially an assignment of constants
to variables that make the formula evaluate to true.
1
Tuple Relational Calculus
 Query has the form: { T | p(T)}
 Answer includes all tuples T that
make the formula p(T) be true.
 Formula is recursively defined, starting with
simple atomic formulas (getting tuples from
relations or making comparisons of values),
and building bigger and better formulas using
the logical connectives.
2
TRC Formulas
 Atomic formula:
– R  Rel, or R.a op S.b, or R.a op constant
– op is one of
 Formula:
– an atomic formula, or
– , where p and q are formulas, or
– , where variable X is free in p(X), or
– , where variable X is free in p(X)
  
, , , , ,
  
p p q p q
, ,
X p X
( ( ))
X p X
( ( ))
2
Free and Bound Variables
 The use of quantifiers X and X in a
formula is said to bind X.
– A variable that is not bound is free.
 Let us revisit the definition of a query: {T|p(T)}
 There is an important restriction: the variable
T that appears to the left of `|’ must be the only
free variable in the formula p(...).
2
Find all sailors with a rating above 7
 {S | S  Sailors ^ S.rating > 7}
 Query is evaluated on an instance of Sailors
 Tuple variable S is instantiated to each tuple of this
instance in turn, and the condition “S.rating > 7” is
applied to each such tuple.
 Answer contains all instances of S (which are tuples
of Sailors) satisfying the condition.
2
Find sailors rated > 7 who’ve reserved boat #103
 {S | (S  Sailors) ^ (S.rating > 7) ^ ( R 
Reserves (R.sid = S.sid ^ R.bid = 103))}
 Note the use of  to find a tuple in Reserves
that `joins with’ the Sailors tuple under
consideration.
 R is bound, S is not
2
Unsafe Queries, Expressive Power
 It is possible to write syntactically correct calculus
queries that have an infinite number of answers!
Such queries are called unsafe.
– e.g.,
 It is known that every query that can be expressed in
relational algebra can be expressed as a safe query in
DRC / TRC; the converse is also true.
 Relational Completeness: Query language (e.g., SQL)
can express every query that is expressible in
relational algebra/calculus.
S S Sailors
|  


















2
Summary
 The relational model has rigorously defined query
languages that are simple and powerful.
 Relational algebra is more operational; useful as
internal representation for query evaluation plans.
 Relational calculus is non-operational, and users
define queries in terms of what they want, not in
terms of how to compute it. (Declarativeness.)
 Several ways of expressing a given query; a query
optimizer should choose the most efficient version.
 Algebra and safe calculus have same expressive power,
leading to the notion of relational completeness.
2
Nested Relations
 Attributes can be scalar (as before) or relation-
valued
 Definition is recursive
 Example:
create table Book (title: string,
author:string, copies: (publ: string,
pages: integer, date: integer))
 “copies” is a relation-valued field
2
Nested Relational Algebra
 A spectrum of algebras can be defined
 At one end:
– Relational algebra plus nest () and unnest ():
If B =
title author copies
Moby Dick Melville
Marmion Scott { }
publ pages date
Prentice Hall
McGraw Hill
613 1971
542 1942
2
Nesting and Unnesting
 … then  (B, copies) =
title author publ pages date
Moby Dick Melville
Moby Dick Melville
Marmion Scott
Prentice Hall
McGraw Hill
613 1971
542 1942
null null null
 Nulls must be supported in algebra
  ( (B, copies), copies (publ, pages, date)) = B
 ,  inverses iff S  N
– S is set of scalar fields
– N is set of non-scalar fields
– This is called PNF (partitioned normal form)
2
Extending Relational Operators
 At other end of spectrum:
– Selection allows set comparators and constants and use of select, project
inside the formula
– Projection allows arbitrary NF2 algebra expression in addition to simple field
names
– Union, difference: recursive definitions
– Cross product: usually just relational.
 Example: retrieve title, number of pages of all books by Melville:
 [title, [pages](copies)]([author=‘Melville’](B))
3
Nested Relations Summary
 An early step on the way to OODBMS
 No products, only prototypes, but:
– Many ideas from NF2 relations have survived
– Collection types in SQL3 (nesting, unnesting)
– Algebra ideas useful for Object Database QP
 Can provide a more natural model of data
 Are a straightforward extension of relations:
– many solutions are thus also straightforward
– formal foundation of relational model remains

More Related Content

PPT
Introduction to Domain Calculus Notes.ppt
PPT
Relational Algebra and Calculus.ppt
PPT
lecture8Alg.ppt
PPT
lefg sdfg ssdfg sdfg sdfg sdfg sdfg sdfg sdfg sdfg sdfg sdfg sdfg sdfg sdfg d...
PPT
Algebra
PPTX
Relational Model
PPT
Relational Algebra
PPT
Relational Algebra
Introduction to Domain Calculus Notes.ppt
Relational Algebra and Calculus.ppt
lecture8Alg.ppt
lefg sdfg ssdfg sdfg sdfg sdfg sdfg sdfg sdfg sdfg sdfg sdfg sdfg sdfg sdfg d...
Algebra
Relational Model
Relational Algebra
Relational Algebra

Similar to Relational algebra in database management system (20)

PPT
Relational Algebra brief lecture notes for SQL.ppt
PPTX
uniT 4 (1).pptx
PDF
APznzab-krNx9xYwUY9_3k8Hh19mmThz2R8IODQ0Q7QpGzIRd4klcTiJbr1Xbm6ooppFjMsR6TZ6B...
PDF
Ch4_Algebra.pdf
PPT
lecture9Calc.ppt
PPTX
Dbms relational model
PPT
Relational Calculus Data Base Managment Systems
PPT
relational algebra and it's implementation
PPTX
DB LECTURE 7 Relational Algebra.pptx
PPTX
database chapter 6.pptx advanced database
PPTX
U-2.pptx igxitditdursruzyezrzmyayeTeYrsyrsurzursursursursursrusursruzruRuUeYe...
PDF
Cs501 rel algebra
PPTX
Relational operation final
PPT
Admission in india 2015
PPT
PPT
Ch7
PDF
Compiler unit 5
PPT
Lecture 06 relational algebra and calculus
PPTX
Query and optimizing operating system.pptx
Relational Algebra brief lecture notes for SQL.ppt
uniT 4 (1).pptx
APznzab-krNx9xYwUY9_3k8Hh19mmThz2R8IODQ0Q7QpGzIRd4klcTiJbr1Xbm6ooppFjMsR6TZ6B...
Ch4_Algebra.pdf
lecture9Calc.ppt
Dbms relational model
Relational Calculus Data Base Managment Systems
relational algebra and it's implementation
DB LECTURE 7 Relational Algebra.pptx
database chapter 6.pptx advanced database
U-2.pptx igxitditdursruzyezrzmyayeTeYrsyrsurzursursursursursrusursruzruRuUeYe...
Cs501 rel algebra
Relational operation final
Admission in india 2015
Ch7
Compiler unit 5
Lecture 06 relational algebra and calculus
Query and optimizing operating system.pptx
Ad

More from AshokRachapalli1 (20)

PPTX
structure of dbms1 power point presentation
PPTX
DBMS Introduction-Unit 1 power point presentation
PPT
215-Database-Recovery presentation document
PPTX
transactionprocessing-220423112118 (1).pptx
PPTX
unit-1 lecture 7 Types of system calls.pptx
PPTX
DATA MODEL Power point presentation for dbms
PPTX
WEEK-2 DML and operators power point presentation
PPTX
Relational Algebra in DBMS 2025 power point
PPTX
CLOSURE OF AN ATTRIBUTE powerpontpresentatio
PPT
DBMS-3.1 Normalization upto boyscodd normal form
PPTX
Data base Users and Administrator pptx
PPTX
Database Languages power point presentation
PPTX
Relational Algebra in DBMS power ppoint pesenetation
PPTX
using Java Exception Handling in Java.pptx
PPTX
Multi-Threading in Java power point presenetation
PPT
ARRAYS in java with in details presentation.ppt
PPT
lecture-a-java-review .. this review ppt will help to the lectureres
PPTX
17.INTRODUCTION TO SCHEMA REFINEMENT.pptx
PPTX
joins in dbms its describes about how joins are important and necessity in d...
PPTX
6.Database Languages lab-1.pptx
structure of dbms1 power point presentation
DBMS Introduction-Unit 1 power point presentation
215-Database-Recovery presentation document
transactionprocessing-220423112118 (1).pptx
unit-1 lecture 7 Types of system calls.pptx
DATA MODEL Power point presentation for dbms
WEEK-2 DML and operators power point presentation
Relational Algebra in DBMS 2025 power point
CLOSURE OF AN ATTRIBUTE powerpontpresentatio
DBMS-3.1 Normalization upto boyscodd normal form
Data base Users and Administrator pptx
Database Languages power point presentation
Relational Algebra in DBMS power ppoint pesenetation
using Java Exception Handling in Java.pptx
Multi-Threading in Java power point presenetation
ARRAYS in java with in details presentation.ppt
lecture-a-java-review .. this review ppt will help to the lectureres
17.INTRODUCTION TO SCHEMA REFINEMENT.pptx
joins in dbms its describes about how joins are important and necessity in d...
6.Database Languages lab-1.pptx
Ad

Recently uploaded (20)

PDF
O7-L3 Supply Chain Operations - ICLT Program
PDF
Pre independence Education in Inndia.pdf
PPTX
GDM (1) (1).pptx small presentation for students
PDF
Module 4: Burden of Disease Tutorial Slides S2 2025
PPTX
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...
PPTX
Renaissance Architecture: A Journey from Faith to Humanism
PDF
RMMM.pdf make it easy to upload and study
PPTX
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
PDF
Basic Mud Logging Guide for educational purpose
PPTX
master seminar digital applications in india
PDF
Complications of Minimal Access Surgery at WLH
PPTX
Final Presentation General Medicine 03-08-2024.pptx
PDF
Abdominal Access Techniques with Prof. Dr. R K Mishra
PDF
FourierSeries-QuestionsWithAnswers(Part-A).pdf
PDF
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
PDF
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
PDF
102 student loan defaulters named and shamed – Is someone you know on the list?
PDF
O5-L3 Freight Transport Ops (International) V1.pdf
PPTX
Cell Structure & Organelles in detailed.
PDF
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
O7-L3 Supply Chain Operations - ICLT Program
Pre independence Education in Inndia.pdf
GDM (1) (1).pptx small presentation for students
Module 4: Burden of Disease Tutorial Slides S2 2025
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...
Renaissance Architecture: A Journey from Faith to Humanism
RMMM.pdf make it easy to upload and study
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
Basic Mud Logging Guide for educational purpose
master seminar digital applications in india
Complications of Minimal Access Surgery at WLH
Final Presentation General Medicine 03-08-2024.pptx
Abdominal Access Techniques with Prof. Dr. R K Mishra
FourierSeries-QuestionsWithAnswers(Part-A).pdf
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
102 student loan defaulters named and shamed – Is someone you know on the list?
O5-L3 Freight Transport Ops (International) V1.pdf
Cell Structure & Organelles in detailed.
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf

Relational algebra in database management system

  • 2. Relational Query Languages  Query languages: Allow manipulation and retrieval of data from a database.  Relational model supports simple, powerful QLs: – Strong formal foundation based on logic. – Allows for much optimization.  Query Languages != programming languages! – QLs not expected to be “Turing complete”. – QLs not intended to be used for complex calculations. – QLs support easy, efficient access to large data sets.
  • 3. Formal Relational Query Languages Two mathematical Query Languages form the basis for “real” languages (e.g. SQL), and for implementation:  Relational Algebra: More operational, very useful for representing execution plans.  Relational Calculus: Lets users describe what they want, rather than how to compute it. (Non-operational, declarative.)  Understanding Algebra & Calculus is key to  understanding SQL, query processing!
  • 4. Preliminaries  A query is applied to relation instances, and the result of a query is also a relation instance. – Schemas of input relations for a query are fixed (but query will run regardless of instance!) – The schema for the result of a given query is also fixed! Determined by definition of query language constructs.  Positional vs. named-field notation: – Positional notation easier for formal definitions, named-field notation more readable. – Both used in Relational Algebra and SQL
  • 5. Example Instances sid sname rating age 22 dustin 7 45.0 31 lubber 8 55.5 58 rusty 10 35.0 sid sname rating age 28 yuppy 9 35.0 31 lubber 8 55.5 44 guppy 5 35.0 58 rusty 10 35.0 sid bid day 22 101 10/10/96 58 103 11/12/96 R1 S1 S2  “Sailors” and “Reserves” relations for our examples.  We’ll use positional or named field notation, assume that names of fields in query results are `inherited’ from names of fields in query input relations.
  • 6. Relational Algebra  Basic operations: – Selection ( ) Selects a subset of rows from relation. – Projection ( ) Deletes unwanted columns from relation. – Cross-product ( ) Allows us to combine two relations. – Set-difference ( ) Tuples in reln. 1, but not in reln. 2. – Union (  ) Tuples in reln. 1 and in reln. 2.  Additional operations: – Intersection, join, division, renaming: Not essential, but (very!) useful.  Since each operation returns a relation, operations can be composed! (Algebra is “closed”.)    
  • 7. Projection sname rating yuppy 9 lubber 8 guppy 5 rusty 10 sname rating S , ( ) 2 age 35.0 55.5 age S ( ) 2  Deletes attributes that are not in projection list.  Schema of result contains exactly the fields in the projection list, with the same names that they had in the (only) input relation.  Projection operator has to eliminate duplicates! (Why??) – Note: real systems typically don’t do duplicate elimination unless the user explicitly asks for it. (Why not?)
  • 8. Selection rating S 8 2 ( ) sid sname rating age 28 yuppy 9 35.0 58 rusty 10 35.0 sname rating yuppy 9 rusty 10   sname rating rating S , ( ( )) 8 2  Selects rows that satisfy selection condition.  No duplicates in result! (Why?)  Schema of result identical to schema of (only) input relation.  Result relation can be the input for another relational algebra operation! (Operator composition.)
  • 9. Union, Intersection, Set-Difference  All of these operations take two input relations, which must be union-compatible: – Same number of fields. – `Corresponding’ fields have the same type.  What is the schema of result? sid sname rating age 22 dustin 7 45.0 31 lubber 8 55.5 58 rusty 10 35.0 44 guppy 5 35.0 28 yuppy 9 35.0 sid sname rating age 31 lubber 8 55.5 58 rusty 10 35.0 S S 1 2  S S 1 2  sid sname rating age 22 dustin 7 45.0 S S 1 2 
  • 10. 1 Cross-Product  Each row of S1 is paired with each row of R1.  Result schema has one field per field of S1 and R1, with field names `inherited’ if possible. – Conflict: Both S1 and R1 have a field called sid.  ( ( , ), ) C sid sid S R 1 1 5 2 1 1    (sid) sname rating age (sid) bid day 22 dustin 7 45.0 22 101 10/10/96 22 dustin 7 45.0 58 103 11/12/96 31 lubber 8 55.5 22 101 10/10/96 31 lubber 8 55.5 58 103 11/12/96 58 rusty 10 35.0 22 101 10/10/96 58 rusty 10 35.0 58 103 11/12/96  Renaming operator:
  • 11. 1 Joins  Condition Join: R C S = C (R  S) S1 S1.sid < R1.sid R1  Result schema same as that of cross-product.  Fewer tuples than cross-product, might be able to compute more efficiently  Sometimes called a theta-join. (sid) sname rating age (sid) bid day 22 dustin 7 45.0 58 103 11/12/96 31 lubber 8 55.5 58 103 11/12/96
  • 12. 1 Joins  Equi-Join: A special case of condition join where the condition c contains only equalities and ^. S1 sid R1  Result schema similar to cross-product, but only one copy of fields for which equality is specified.  Natural Join: Equijoin on all common fields. sid sname rating age bid day 22 dustin 7 45.0 101 10/10/96 58 rusty 10 35.0 103 11/12/96
  • 13. 1 Find names of sailors who’ve reserved boat #103  Solution 1:   sname bid serves Sailors (( Re ) ) 103   Solution 2:   ( , Re ) Temp serves bid 1 103   ( , ) Temp Temp Sailors 2 1  sname Temp ( ) 2  Solution 3:   sname bid serves Sailors ( (Re )) 103 
  • 14. 1 Find names of sailors who’ve reserved a red boat  Information about boat color only available in Boats; so need an extra join:   sname color red Boats serves Sailors (( ' ' ) Re )     A more efficient solution:     sname sid bid color red Boats s Sailors ( (( ' ' ) Re ) )     A query optimizer can find this given the first solution!
  • 15. 1 Find sailors who’ve reserved a red or a green boat  Can identify all red or green boats, then find sailors who’ve reserved one of these boats:   ( ,( ' ' ' ' )) Tempboats color red color green Boats     sname Tempboats serves Sailors ( Re )    Can also define Tempboats using union! (How?)  What happens if is replaced by in this query?  
  • 16. 1 Find sailors who’ve reserved a red and a green boat  Previous approach won’t work! Must identify sailors who’ve reserved red boats, sailors who’ve reserved green boats, then find the intersection (note that sid is a key for Sailors):    ( , (( ' ' ) Re )) Tempred sid color red Boats serves    sname Tempred Tempgreen Sailors (( ) )      ( , (( ' ' ) Re )) Tempgreen sid color green Boats serves  
  • 18. 1 Relational Calculus  Comes in two flavors: Tuple relational calculus (TRC) and Domain relational calculus (DRC).  Calculus has variables, constants, comparison ops, logical connectives, and quantifiers. – TRC: Variables range over (i.e., get bound to) tuples. – DRC: Variables range over domain elements (= field values). – Both TRC and DRC are simple subsets of first-order logic.  Expressions in the calculus are called formulas. An answer tuple is essentially an assignment of constants to variables that make the formula evaluate to true.
  • 19. 1 Tuple Relational Calculus  Query has the form: { T | p(T)}  Answer includes all tuples T that make the formula p(T) be true.  Formula is recursively defined, starting with simple atomic formulas (getting tuples from relations or making comparisons of values), and building bigger and better formulas using the logical connectives.
  • 20. 2 TRC Formulas  Atomic formula: – R  Rel, or R.a op S.b, or R.a op constant – op is one of  Formula: – an atomic formula, or – , where p and q are formulas, or – , where variable X is free in p(X), or – , where variable X is free in p(X)    , , , , ,    p p q p q , , X p X ( ( )) X p X ( ( ))
  • 21. 2 Free and Bound Variables  The use of quantifiers X and X in a formula is said to bind X. – A variable that is not bound is free.  Let us revisit the definition of a query: {T|p(T)}  There is an important restriction: the variable T that appears to the left of `|’ must be the only free variable in the formula p(...).
  • 22. 2 Find all sailors with a rating above 7  {S | S  Sailors ^ S.rating > 7}  Query is evaluated on an instance of Sailors  Tuple variable S is instantiated to each tuple of this instance in turn, and the condition “S.rating > 7” is applied to each such tuple.  Answer contains all instances of S (which are tuples of Sailors) satisfying the condition.
  • 23. 2 Find sailors rated > 7 who’ve reserved boat #103  {S | (S  Sailors) ^ (S.rating > 7) ^ ( R  Reserves (R.sid = S.sid ^ R.bid = 103))}  Note the use of  to find a tuple in Reserves that `joins with’ the Sailors tuple under consideration.  R is bound, S is not
  • 24. 2 Unsafe Queries, Expressive Power  It is possible to write syntactically correct calculus queries that have an infinite number of answers! Such queries are called unsafe. – e.g.,  It is known that every query that can be expressed in relational algebra can be expressed as a safe query in DRC / TRC; the converse is also true.  Relational Completeness: Query language (e.g., SQL) can express every query that is expressible in relational algebra/calculus. S S Sailors |                    
  • 25. 2 Summary  The relational model has rigorously defined query languages that are simple and powerful.  Relational algebra is more operational; useful as internal representation for query evaluation plans.  Relational calculus is non-operational, and users define queries in terms of what they want, not in terms of how to compute it. (Declarativeness.)  Several ways of expressing a given query; a query optimizer should choose the most efficient version.  Algebra and safe calculus have same expressive power, leading to the notion of relational completeness.
  • 26. 2 Nested Relations  Attributes can be scalar (as before) or relation- valued  Definition is recursive  Example: create table Book (title: string, author:string, copies: (publ: string, pages: integer, date: integer))  “copies” is a relation-valued field
  • 27. 2 Nested Relational Algebra  A spectrum of algebras can be defined  At one end: – Relational algebra plus nest () and unnest (): If B = title author copies Moby Dick Melville Marmion Scott { } publ pages date Prentice Hall McGraw Hill 613 1971 542 1942
  • 28. 2 Nesting and Unnesting  … then  (B, copies) = title author publ pages date Moby Dick Melville Moby Dick Melville Marmion Scott Prentice Hall McGraw Hill 613 1971 542 1942 null null null  Nulls must be supported in algebra   ( (B, copies), copies (publ, pages, date)) = B  ,  inverses iff S  N – S is set of scalar fields – N is set of non-scalar fields – This is called PNF (partitioned normal form)
  • 29. 2 Extending Relational Operators  At other end of spectrum: – Selection allows set comparators and constants and use of select, project inside the formula – Projection allows arbitrary NF2 algebra expression in addition to simple field names – Union, difference: recursive definitions – Cross product: usually just relational.  Example: retrieve title, number of pages of all books by Melville:  [title, [pages](copies)]([author=‘Melville’](B))
  • 30. 3 Nested Relations Summary  An early step on the way to OODBMS  No products, only prototypes, but: – Many ideas from NF2 relations have survived – Collection types in SQL3 (nesting, unnesting) – Algebra ideas useful for Object Database QP  Can provide a more natural model of data  Are a straightforward extension of relations: – many solutions are thus also straightforward – formal foundation of relational model remains

Editor's Notes

  • #1: The slides for this text are organized into several modules. Each lecture contains about enough material for a 1.25 hour class period. (The time estimate is very approximate--it will vary with the instructor, and lectures also differ in length; so use this as a rough guideline.) This covers Lecture 2 (of 6) in Module (3). Module (1): Introduction (DBMS, Relational Model) Module (2): Storage and File Organizations (Disks, Buffering, Indexes) Module (3): Database Concepts (Relational Queries, DDL/ICs, Views and Security) Module (4): Relational Implementation (Query Evaluation, Optimization) Module (5): Database Design (ER Model, Normalization, Physical Design, Tuning) Module (6): Transaction Processing (Concurrency Control, Recovery) Module (7): Advanced Topics