Relational Algebra
Example schema will be used for examples
- Relations: Movies(mID, title, director, year, length); Artists(aID, aName, nationality); Roles(mID, aID, character)
- Foreign key constraints: Roles[mID] Movies[mID]; Roles[aID] Artists[aID]
Relational algebra
- The value of any expression is a relation
- Assumptions
- Relations as sets (without duplicated rows)
- Every cell has a value
- Operands: tables
- Operator examples:
- Choose only the rows wanted
- Choose only the columns wanted
- combine tables
Operators
Select Rows
: table, boolean expression
- The result is a relation with the same schema but with only the tuples satisfy
- Select all British actors
- Select all movies from 1970s
Project
slice vertically
- onto fewer attributes can remove key that makes duplicates possible, whenever duplicates happens, only one copy of each is kept
- To perform multiple query together Example: find the names of all directors of movies from the 1970s
Cartesian Product
map two relations to a new relation with every combination of a tuple from concatenated to a tuple from
- Resulted schema is every attribute from followed by in order
- The resulted relation have tuples
Natural join
take the Cartesian product and select rows with the same attribute and value that are in both relation to ensure equality on attributes, then project to remove duplicate attributes
- Natural join is commutative and associative
Theta Join
Assignment
or , the second way allows to rename all the attributes
- must be temporary and not one of the relations in the schema, it should not be updated
Rename
or renames the relation. Note that is equivalent to
Division
the largest relation s.t. . the operation will return a relation will all the attributes in that's not in and all tuples in that match every tuple in