Relational Algebra Flashcards
Relational Query Languages do what?
allow the manipulation and retrieval of data from a database
two types of query languages
declarative, procedural
Declarative query language
describe what a user wants, rather than how to compute it (TRC, DRC)
Procedural query language
operational, useful for representing execution plans (relational alg)
relational query languages
can’t capture any type of computation, not intended for complex computations
algebra
operands - varialbes or values from which new values can be constructed
operators - symbols denoting procedures that construct new values from given values
relational algebra
an algebra whose operands are relations or variables that represent relations
Selection
Oc(R)
outputs the rows of R that satisfy C
Projection
PIa(R)
outputs only the columns A1, A2, …An, removes duplicate tuples
Union R1 U R2
outputs all tuples in R1 or R2
Difference
R1 - R2
outputs all tuples in R1 and not in R2
Cross Product
R1 x R2
matches each tuples in R1 with each tuple in R2
Renaming
Pa(R)
does not change the instance, only the schema
Intersection
R1 ^ R2
outputs all tuples in R1 and R2
Theta Join
Cross product followed by a selection
condition = any boolean valued condition
Equi-Join
Condition C contains only equalities between attributes
Natural Join
- equi-join on all the common fields
- the output schema has one copy of each common attribute
Semi-Join
R1 (bowtie) R2
natural join followed by projection on the attributes of R1
Division
R1/R2
all values a such that for every tuple b in R, tuple (a, b) is in R1
Group by Aggregate
group by the attributes in X
aggregate the attribute in Y
RA cannot express what?
Transitive closure - all pairs of nodes connected by a direct path