In
database theory, relational algebra is a theory that uses
algebraic structure
In mathematics, an algebraic structure consists of a nonempty set ''A'' (called the underlying set, carrier set or domain), a collection of operations on ''A'' (typically binary operations such as addition and multiplication), and a finite set of ...
s with a
well-founded semantics In logic programming, the well-founded semantics is one definition of how we can make conclusions from a set of logical rules. In logic programming, we give a computer a set of facts, and a set of "inference rules" about how these facts relate. Th ...
for modeling data, and defining queries on it. The theory was introduced by
Edgar F. Codd.
The main application of relational algebra is to provide a theoretical foundation for
relational database
A relational database is a (most commonly digital) database based on the relational model of data, as proposed by E. F. Codd in 1970. A system used to maintain relational databases is a relational database management system (RDBMS). Many relatio ...
s, particularly
query languages for such databases, chief among which is
SQL. Relational databases store tabular data represented as
relations
Relation or relations may refer to:
General uses
*International relations, the study of interconnection of politics, economics, and law on a global level
*Interpersonal relationship, association or acquaintance between two or more people
*Public ...
. Queries over relational databases often likewise return tabular data represented as
relations
Relation or relations may refer to:
General uses
*International relations, the study of interconnection of politics, economics, and law on a global level
*Interpersonal relationship, association or acquaintance between two or more people
*Public ...
.
The main purpose of the relational algebra is to define operators that transform one or more input relations to an output relation. Given that these operators accept relations as input and produce relations as output, they can be combined and used to express potentially complex queries that transform potentially many input relations (whose data are stored in the database) into a single output relation (the query results).
Unary operators accept as input a single relation; examples include operators to filter certain attributes (columns) or tuples (rows) from an input relation.
Binary operators accept as input two relations; such operators combine the two input relations into a single output relation by, for example, taking all tuples found in either relation, removing tuples from the first relation found in the second relation, extending the tuples of the first relation with tuples in the second relation matching certain conditions, and so forth.
Other more advanced operators can also be included, where the inclusion or exclusion of certain operators gives rise to a family of algebras.
Introduction
Relational algebra received little attention outside of pure mathematics until the publication of
E.F. Codd
Edgar Frank "Ted" Codd (19 August 1923 – 18 April 2003) was an English computer scientist who, while working for IBM, invented the relational model for database management, the theoretical basis for relational databases and relational databa ...
's
relational model of data in 1970. Codd proposed such an algebra as a basis for database query languages. (See section
Implementations.)
Five primitive operators of Codd's algebra are the ''
selection'', the ''
projection
Projection, projections or projective may refer to:
Physics
* Projection (physics), the action/process of light, heat, or sound reflecting from a surface to another in a different direction
* The display of images by a projector
Optics, graphic ...
'', the ''
Cartesian product
In mathematics, specifically set theory, the Cartesian product of two sets ''A'' and ''B'', denoted ''A''×''B'', is the set of all ordered pairs where ''a'' is in ''A'' and ''b'' is in ''B''. In terms of set-builder notation, that is
: A\ti ...
'' (also called the ''cross product'' or ''cross join''), the ''
set union
In set theory, the union (denoted by ∪) of a collection of sets is the set of all elements in the collection. It is one of the fundamental operations through which sets can be combined and related to each other.
A refers to a union of ze ...
'', and the ''
set difference
In set theory, the complement of a set , often denoted by (or ), is the set of elements not in .
When all sets in the universe, i.e. all sets under consideration, are considered to be members of a given set , the absolute complement of is the ...
''.
Set operators
The relational algebra uses
set union
In set theory, the union (denoted by ∪) of a collection of sets is the set of all elements in the collection. It is one of the fundamental operations through which sets can be combined and related to each other.
A refers to a union of ze ...
,
set difference
In set theory, the complement of a set , often denoted by (or ), is the set of elements not in .
When all sets in the universe, i.e. all sets under consideration, are considered to be members of a given set , the absolute complement of is the ...
, and
Cartesian product
In mathematics, specifically set theory, the Cartesian product of two sets ''A'' and ''B'', denoted ''A''×''B'', is the set of all ordered pairs where ''a'' is in ''A'' and ''b'' is in ''B''. In terms of set-builder notation, that is
: A\ti ...
from
set theory, but adds additional constraints to these operators.
For set union and set difference, the two
relation
Relation or relations may refer to:
General uses
*International relations, the study of interconnection of politics, economics, and law on a global level
*Interpersonal relationship, association or acquaintance between two or more people
*Public ...
s involved must be ''union-compatible''—that is, the two relations must have the same set of attributes. Because
set intersection is defined in terms of set union and set difference, the two relations involved in set intersection must also be union-compatible.
For the Cartesian product to be defined, the two relations involved must have disjoint headers—that is, they must not have a common attribute name.
In addition, the Cartesian product is defined differently from the one in
set theory in the sense that tuples are considered to be "shallow" for the purposes of the operation. That is, the Cartesian product of a set of ''n''-tuples with a set of ''m''-tuples yields a set of "flattened" -tuples (whereas basic set theory would have prescribed a set of 2-tuples, each containing an ''n''-tuple and an ''m''-tuple). More formally, ''R'' × ''S'' is defined as follows:
The cardinality of the Cartesian product is the product of the cardinalities of its factors, that is, , ''R'' × ''S'', = , ''R'', × , ''S'', .
Projection ()
A projection is a
unary operation written as
where
is a set of attribute names. The result of such projection is defined as the
set that is obtained when all
tuples in ''R'' are restricted to the set
.
Note: when implemented in
SQL standard the "default projection" returns a
multiset instead of a set, and the projection to eliminate duplicate data is obtained by the addition of the
DISTINCT
keyword.
Selection (''σ'')
A generalized selection is a
unary operation written as
where is a
propositional formula that consists of
atoms as allowed in the
normal selection and the logical operators (
and), (
or) and (
negation
In logic, negation, also called the logical complement, is an operation that takes a proposition P to another proposition "not P", written \neg P, \mathord P or \overline. It is interpreted intuitively as being true when P is false, and false ...
). This selection selects all those
tuples in ''R'' for which holds.
To obtain a listing of all friends or business associates in an address book, the selection might be written as
. The result would be a relation containing every attribute of every unique record where is true or where is true.
Rename (''ρ'')
A rename is a
unary operation written as
where the result is identical to ''R'' except that the ''b'' attribute in all tuples is renamed to an ''a'' attribute. This is simply used to rename the attribute of a
relation
Relation or relations may refer to:
General uses
*International relations, the study of interconnection of politics, economics, and law on a global level
*Interpersonal relationship, association or acquaintance between two or more people
*Public ...
or the relation itself.
To rename the "isFriend" attribute to "isBusinessContact" in a relation,
might be used.
There is also the
notation, where ''R'' is renamed to ''x'' and the attributes
are renamed to
.
Joins and join-like operators
()
Natural join (⋈) is a
binary operator that is written as (''R'' ⋈ ''S'') where ''R'' and ''S'' are
relation
Relation or relations may refer to:
General uses
*International relations, the study of interconnection of politics, economics, and law on a global level
*Interpersonal relationship, association or acquaintance between two or more people
*Public ...
s. The result of the natural join is the set of all combinations of tuples in ''R'' and ''S'' that are equal on their common attribute names. For an example consider the tables ''Employee'' and ''Dept'' and their natural join:
Note that neither the employee named Mary nor the Production department appear in the result.
This can also be used to define
composition of relations
In the mathematics of binary relations, the composition of relations is the forming of a new binary relation from two given binary relations ''R'' and ''S''. In the calculus of relations, the composition of relations is called relative multiplica ...
. For example, the composition of ''Employee'' and ''Dept'' is their join as shown above, projected on all but the common attribute ''DeptName''. In
category theory
Category theory is a general theory of mathematical structures and their relations that was introduced by Samuel Eilenberg and Saunders Mac Lane in the middle of the 20th century in their foundational work on algebraic topology. Nowadays, cate ...
, the join is precisely the
fiber product.
The natural join is arguably one of the most important operators since it is the relational counterpart of the logical AND operator. Note that if the same variable appears in each of two predicates that are connected by AND, then that variable stands for the same thing and both appearances must always be substituted by the same value (this is a consequence of the
idempotence of the logical AND). In particular, natural join allows the combination of relations that are associated by a
foreign key A foreign key is a set of attributes in a table that refers to the primary key of another table. The foreign key links these two tables. Another way to put it: In the context of relational databases, a foreign key is a set of attributes subject to ...
. For example, in the above example a foreign key probably holds from ''Employee''.''DeptName'' to ''Dept''.''DeptName'' and then the natural join of ''Employee'' and ''Dept'' combines all employees with their departments. This works because the foreign key holds between attributes with the same name. If this is not the case such as in the foreign key from ''Dept''.''Manager'' to ''Employee''.''Name'' then these columns must be renamed before taking the natural join. Such a join is sometimes also referred to as an equijoin (see ''θ''-join).
More formally the semantics of the natural join are defined as follows:
where ''Fun(t)'' is a
predicate that is true for a
relation
Relation or relations may refer to:
General uses
*International relations, the study of interconnection of politics, economics, and law on a global level
*Interpersonal relationship, association or acquaintance between two or more people
*Public ...
''t'' (in the mathematical sense)
iff
In logic and related fields such as mathematics and philosophy, "if and only if" (shortened as "iff") is a biconditional logical connective between statements, where either both statements are true or both are false.
The connective is bicondi ...
''t'' is a function (that is, ''t'' does not map any attribute to multiple values). It is usually required that ''R'' and ''S'' must have at least one common attribute, but if this constraint is omitted, and ''R'' and ''S'' have no common attributes, then the natural join becomes exactly the Cartesian product.
The natural join can be simulated with Codd's primitives as follows. Assume that ''c''
1,...,''c''
''m'' are the attribute names common to ''R'' and ''S'', ''r''
1,...,''r''
''n'' are the
attribute names unique to ''R'' and ''s''
1,...,''s''
''k'' are the
attribute names unique to ''S''. Furthermore, assume that the attribute names ''x''
1,...,''x''
''m'' are neither in ''R'' nor in ''S''. In a first step the common attribute names in ''S'' can be renamed:
Then we take the Cartesian product and select the tuples that are to be joined:
Finally we take a projection to get rid of the renamed attributes:
''θ''-join and equijoin
Consider tables ''Car'' and ''Boat'' which list models of cars and boats and their respective prices. Suppose a customer wants to buy a car and a boat, but she does not want to spend more money for the boat than for the car. The ''θ''-join (⋈
''θ'') on the predicate ''CarPrice'' ≥ ''BoatPrice'' produces the flattened pairs of rows which satisfy the predicate. When using a condition where the attributes are equal, for example Price, then the condition may be specified as ''Price''=''Price''
or alternatively (''Price'') itself.
In order to combine tuples from two relations where the combination condition is not simply the equality of shared attributes it is convenient to have a more general form of join operator, which is the ''θ''-join (or theta-join). The ''θ''-join is a binary operator that is written as
or
where ''a'' and ''b'' are attribute names, ''θ'' is a binary
relational operator in the set
, ''υ'' is a value constant, and ''R'' and ''S'' are relations. The result of this operation consists of all combinations of tuples in ''R'' and ''S'' that satisfy ''θ''. The result of the ''θ''-join is defined only if the headers of ''S'' and ''R'' are disjoint, that is, do not contain a common attribute.
The simulation of this operation in the fundamental operations is therefore as follows:
: ''R'' ⋈
''θ'' ''S'' = ''σ
θ''(''R'' × ''S'')
In case the operator ''θ'' is the equality operator (=) then this join is also called an equijoin.
Note, however, that a computer language that supports the natural join and selection operators does not need ''θ''-join as well, as this can be achieved by selection from the result of a natural join (which degenerates to Cartesian product when there are no shared attributes).
In SQL implementations, joining on a predicate is usually called an ''inner join'', and the ''on'' keyword allows one to specify the predicate used to filter the rows. It is important to note: forming the flattened Cartesian product then filtering the rows is conceptually correct, but an implementation would use more sophisticated data structures to speed up the join query.
(⋉ and ⋊)
The left semijoin is a joining similar to the natural join and written as
where
and
are
relation
Relation or relations may refer to:
General uses
*International relations, the study of interconnection of politics, economics, and law on a global level
*Interpersonal relationship, association or acquaintance between two or more people
*Public ...
s. The result is the set of all tuples in
for which there is a tuple in
that is equal on their common attribute names. The difference from a natural join is that other columns of
do not appear. For example, consider the tables ''Employee'' and ''Dept'' and their semijoin:
More formally the semantics of the semijoin can be defined as
follows:
where
is as in the definition of natural join.
The semijoin can be simulated using the natural join as follows. If
are the attribute names of
, then
Since we can simulate the natural join with the basic operators it follows that this also holds for the semijoin.
In Codd's 1970 paper, semijoin is called restriction.
(▷)
The antijoin, written as ''R'' ▷ ''S'' where ''R'' and ''S'' are
relation
Relation or relations may refer to:
General uses
*International relations, the study of interconnection of politics, economics, and law on a global level
*Interpersonal relationship, association or acquaintance between two or more people
*Public ...
s, is similar to the semijoin, but the result of an antijoin is only those tuples in ''R'' for which there is ''no'' tuple in ''S'' that is equal on their common attribute names.
For an example consider the tables ''Employee'' and ''Dept'' and their
antijoin:
The antijoin is formally defined as follows:
:
''R'' ▷ ''S'' =
or
:
''R'' ▷ ''S'' =
where is as in the definition of natural join.
The antijoin can also be defined as the
complement of the semijoin, as follows:
Given this, the antijoin is sometimes called the anti-semijoin, and the antijoin operator is sometimes written as semijoin symbol with a bar above it, instead of ▷.
(÷)
The division is a binary operation that is written as ''R'' ÷ ''S''. Division is not implemented directly in SQL. The result consists of the restrictions of tuples in ''R'' to the attribute names unique to ''R'', i.e., in the header of ''R'' but not in the header of ''S'', for which it holds that all their combinations with tuples in ''S'' are present in ''R''. For an example see the tables ''Completed'', ''DBProject'' and their division:
If ''DBProject'' contains all the tasks of the Database project, then the result of the division above contains exactly the students who have completed both of the tasks in the Database project.
More formally the semantics of the division is defined as follows:where is the set of attribute names unique to ''R'' and ''t''
1,...,''a''''n''">'a''1,...,''a''''n''is the restriction of ''t'' to this set. It is usually required that the attribute names in the header of ''S'' are a subset of those of ''R'' because otherwise the result of the operation will always be empty.
The simulation of the division with the basic operations is as follows. We assume that ''a''
1,...,''a''
''n'' are the attribute names unique to ''R'' and ''b''
1,...,''b''
''m'' are the attribute names of ''S''. In the first step we project ''R'' on its unique attribute names and construct all combinations with tuples in ''S'':
: ''T'' := π
''a''1,...,''a''''n''(''R'') × ''S''
In the prior example, T would represent a table such that every Student (because Student is the unique key / attribute of the Completed table) is combined with every given Task. So Eugene, for instance, would have two rows, Eugene → Database1 and Eugene → Database2 in T.
:: EG: First, let's pretend that "Completed" has a third attribute called "grade". It's unwanted baggage here, so we must project it off always. In fact in this step we can drop "Task" from R as well; the multiply puts it back on.
:: ''T'' := π
Student(''R'') × ''S'' // This gives us every possible desired combination, including those that don't actually exist in R, and excluding others (eg Fred , compiler1, which is not a desired combination)
In the next step we subtract ''R'' from ''T''
relation
Relation or relations may refer to:
General uses
*International relations, the study of interconnection of politics, economics, and law on a global level
*Interpersonal relationship, association or acquaintance between two or more people
*Public ...
:
: ''U'' := ''T'' − ''R''
In ''U'' we have the possible
combinations that "could have" been in ''R'', but weren't.
:: EG: Again with projections — ''T'' and ''R'' need to have identical attribute names/headers.
:: ''U'' := ''T'' − π
Student,Task(''R'') // This gives us a "what's missing" list.
So if we now take the projection on the attribute names unique to ''R''
then we have the restrictions of the tuples in ''R'' for which not
all combinations with tuples in ''S'' were present in ''R'':
: ''V'' := π
''a''1,...,''a''''n''(''U'')
:: EG: Project ''U'' down to just the attribute(s) in question (Student)
:: ''V'' := π
Student(''U'')
So what remains to be done is take the projection of ''R'' on its
unique attribute names and subtract those in ''V'':
: ''W'' := π
''a''1,...,''a''''n''(''R'') − ''V''
:: EG: ''W'' := π
Student(''R'') − ''V''.
Common extensions
In practice the classical relational algebra described above is extended with various operations such as outer joins, aggregate functions and even transitive closure.
Outer joins
Whereas the result of a join (or inner join) consists of tuples formed by combining matching tuples in the two operands, an outer join contains those tuples and additionally some tuples formed by extending an unmatched tuple in one of the operands by "fill" values for each of the attributes of the other operand. Outer joins are not considered part of the classical relational algebra discussed so far.
The operators defined in this section assume the existence of a ''null'' value, ''ω'', which we do not define, to be used for the fill values; in practice this corresponds to the
NULL in SQL. In order to make subsequent selection operations on the resulting table meaningful, a semantic meaning needs to be assigned to nulls; in Codd's approach the propositional logic used by the selection is
extended to a three-valued logic, although we elide those details in this article.
Three outer join operators are defined: left outer join, right outer join, and full outer join. (The word "outer" is sometimes omitted.)
(⟕)
The left outer join is written as ''R'' ⟕ ''S'' where ''R'' and ''S'' are
relation
Relation or relations may refer to:
General uses
*International relations, the study of interconnection of politics, economics, and law on a global level
*Interpersonal relationship, association or acquaintance between two or more people
*Public ...
s. The result of the left outer join is the set of all combinations of tuples in ''R'' and ''S'' that are equal on their common attribute names, in addition (loosely speaking) to tuples in ''R'' that have no matching tuples in ''S''.
For an example consider the tables ''Employee'' and ''Dept'' and their left outer join:
In the resulting relation, tuples in ''S'' which have no common values in common attribute names with tuples in ''R'' take a ''null'' value, ''ω''.
Since there are no tuples in ''Dept'' with a ''DeptName'' of ''Finance'' or ''Executive'', ''ω''s occur in the resulting relation where tuples in ''Employee'' have a ''DeptName'' of ''Finance'' or ''Executive''.
Let ''r''
1, ''r''
2, ..., ''r''
''n'' be the attributes of the relation ''R'' and let be the singleton
relation on the attributes that are ''unique'' to the relation ''S'' (those that are not attributes of ''R''). Then the left outer join can be described in terms of the natural join (and hence using basic operators) as follows:
:
(⟖)
The right outer join behaves almost identically to the left outer join, but the roles of the tables are switched.
The right outer join of
relation
Relation or relations may refer to:
General uses
*International relations, the study of interconnection of politics, economics, and law on a global level
*Interpersonal relationship, association or acquaintance between two or more people
*Public ...
s ''R'' and ''S'' is written as ''R'' ⟖ ''S''. The result of the right outer join is the set of all combinations of tuples in ''R'' and ''S'' that are equal on their common attribute names, in addition to tuples in ''S'' that have no matching tuples in ''R''.
For example, consider the tables ''Employee'' and ''Dept'' and their
right outer join:
In the resulting relation, tuples in ''R'' which have no common values in common attribute names with tuples in ''S'' take a ''null'' value, ''ω''.
Since there are no tuples in ''Employee'' with a ''DeptName'' of ''Production'', ''ω''s occur in the Name and EmpId attributes of the resulting relation where tuples in ''Dept'' had ''DeptName'' of ''Production''.
Let ''s''
1, ''s''
2, ..., ''s''
''n'' be the attributes of the relation ''S'' and let be the singleton
relation on the attributes that are ''unique'' to the relation ''R'' (those that are not attributes of ''S''). Then, as with the left outer join, the right outer join can be simulated using the natural join as follows:
:
(⟗)
The outer join or full outer join in effect combines the results of the left and right outer joins.
The full outer join is written as ''R'' ⟗ ''S'' where ''R'' and ''S'' are
relation
Relation or relations may refer to:
General uses
*International relations, the study of interconnection of politics, economics, and law on a global level
*Interpersonal relationship, association or acquaintance between two or more people
*Public ...
s. The result of the full outer join is the set of all combinations of tuples in ''R'' and ''S'' that are equal on their common attribute names, in addition to tuples in ''S'' that have no matching tuples in ''R'' and tuples in ''R'' that have no matching tuples in ''S'' in their common attribute names.
For an example consider the tables ''Employee'' and ''Dept'' and their
full outer join:
In the resulting relation, tuples in ''R'' which have no common values in common attribute names with tuples in ''S'' take a ''null'' value, ''ω''. Tuples in ''S'' which have no common values in common attribute names with tuples in ''R'' also take a ''null'' value, ''ω''.
The full outer join can be simulated using the left and right outer joins (and hence the natural join and set union) as follows:
:''R'' ⟗ ''S'' = (''R'' ⟕ ''S'') ∪ (''R'' ⟖ ''S'')
Operations for domain computations
There is nothing in relational algebra introduced so far that would allow computations on the data domains (other than evaluation of propositional expressions involving equality). For example, it is not possible using only the algebra introduced so far to write an expression that would multiply the numbers from two columns, e.g. a unit price with a quantity to obtain a total price. Practical query languages have such facilities, e.g. the SQL SELECT allows arithmetic operations to define new columns in the result
SELECT unit_price * quantity AS total_price FROM t, and a similar facility is provided more explicitly by Tutorial D's
EXTEND
keyword.
In database theory, this is called extended projection.
Aggregation
Furthermore, computing various functions on a column, like the summing up of its elements, is also not possible using the relational algebra introduced so far. There are five
aggregate functions that are included with most relational database systems. These operations are Sum, Count, Average, Maximum and Minimum. In relational algebra the aggregation operation over a schema (''A''
1, ''A''
2, ... ''A''
''n'') is written as follows:
:
where each ''A''
''j''', 1 ≤ ''j'' ≤ ''k'', is one of the original attributes ''A''
''i'', 1 ≤ ''i'' ≤ ''n''.
The attributes preceding the ''g'' are grouping attributes, which function like a "group by" clause in SQL. Then there are an arbitrary number of aggregation functions applied to individual attributes. The operation is applied to an arbitrary relation ''r''. The grouping attributes are optional, and if they are not supplied, the aggregation functions are applied across the entire relation to which the operation is applied.
Let's assume that we have a table named with three columns, namely and . We wish to find the maximum balance of each branch. This is accomplished by
''G''
Max()(). To find the highest balance of all accounts regardless of branch, we could simply write ''G''
Max()().
Grouping is often written as
''ɣ''
Max()() instead.
Transitive closure
Although relational algebra seems powerful enough for most practical purposes, there are some simple and natural operators on
relation
Relation or relations may refer to:
General uses
*International relations, the study of interconnection of politics, economics, and law on a global level
*Interpersonal relationship, association or acquaintance between two or more people
*Public ...
s that cannot be expressed by relational algebra. One of them is the
transitive closure of a binary relation. Given a domain ''D'', let binary relation ''R'' be a subset of ''D''×''D''. The transitive closure ''R
+'' of ''R'' is the smallest subset of ''D''×''D'' that contains ''R'' and satisfies the following condition:
:
It can be proved using the fact that there is no relational algebra expression ''E''(''R'') taking ''R'' as a variable argument that produces ''R''
+.
SQL however officially supports such
fixpoint queries since 1999, and it had vendor-specific extensions in this direction well before that.
Use of algebraic properties for query optimization
Queries can be represented as a
tree, where
* the internal nodes are operators,
* leaves are
relation
Relation or relations may refer to:
General uses
*International relations, the study of interconnection of politics, economics, and law on a global level
*Interpersonal relationship, association or acquaintance between two or more people
*Public ...
s,
* subtrees are subexpressions.
The primary goal is to transform expression trees into equivalent
expression trees, where the average size of the relations yielded by subexpressions in the tree is smaller than it was before the
optimization. The secondary goal is to try to form common subexpressions within a single query, or if there is more than one query being evaluated at the same time, in all of those queries. The rationale behind the second goal is that it is enough to compute common subexpressions once, and the results can be used in all queries that contain that subexpression.
Here are a set of rules that can be used in such transformations.
Selection
Rules about selection operators play the most important role in query optimization. Selection is an operator that very effectively decreases the number of rows in its operand, so if the selections in an expression tree are moved towards the leaves, the internal
relation
Relation or relations may refer to:
General uses
*International relations, the study of interconnection of politics, economics, and law on a global level
*Interpersonal relationship, association or acquaintance between two or more people
*Public ...
s (yielded by subexpressions) will likely shrink.
Basic selection properties
Selection is
idempotent (multiple applications of the same selection have no additional effect beyond the first one), and
commutative (the order selections are applied in has no effect on the eventual result).
#
#
Breaking up selections with complex conditions
A selection whose condition is a
conjunction of simpler conditions is equivalent to a sequence of selections with those same individual conditions, and selection whose condition is a
disjunction is equivalent to a union of selections. These identities can be used to merge selections so that fewer selections need to be evaluated, or to split them so that the component selections may be moved or optimized separately.
#
#
Selection and cross product
Cross product is the costliest operator to evaluate. If the input
relation
Relation or relations may refer to:
General uses
*International relations, the study of interconnection of politics, economics, and law on a global level
*Interpersonal relationship, association or acquaintance between two or more people
*Public ...
s have ''N'' and ''M'' rows, the result will contain
rows. Therefore, it is important to decrease the size of both operands before applying the cross product operator.
This can be effectively done if the cross product is followed by a selection operator, e.g.
. Considering the definition of join, this is the most likely case. If the cross product is not followed by a selection operator, we can try to push down a selection from higher levels of the expression tree using the other selection rules.
In the above case the condition ''A'' is broken up in to conditions ''B'', ''C'' and ''D'' using the split rules about complex selection conditions, so that
and ''B'' contains attributes only from ''R'', ''C'' contains attributes only from ''P'', and ''D'' contains the part of ''A'' that contains attributes from both ''R'' and ''P''. Note, that ''B'', ''C'' or ''D'' are possibly empty. Then the following holds:
:
Selection and set operators
Selection is
distributive over the set difference, intersection, and union operators. The following three rules are used to push selection below set operations in the expression tree. For the set difference and the intersection operators, it is possible to apply the selection operator to just one of the operands following the transformation. This can be beneficial where one of the operands is small, and the overhead of evaluating the selection operator outweighs the benefits of using a smaller
relation
Relation or relations may refer to:
General uses
*International relations, the study of interconnection of politics, economics, and law on a global level
*Interpersonal relationship, association or acquaintance between two or more people
*Public ...
as an operand.
#
#
#
Selection and projection
Selection commutes with projection if and only if the fields referenced in the selection condition are a subset of the fields in the projection. Performing selection before projection may be useful if the operand is a cross product or join. In other cases, if the selection condition is relatively expensive to compute, moving selection outside the projection may reduce the number of tuples which must be tested (since projection may produce fewer tuples due to the elimination of duplicates resulting from omitted fields).
:
Projection
Basic projection properties
Projection is idempotent, so that a series of (valid) projections is equivalent to the outermost projection.
:
Projection and set operators
Projection is
distributive over set union.
:
Projection does not distribute over intersection and set difference. Counterexamples are given by:
:
:
and
:
:
where ''b'' is assumed to be distinct from .
Rename
Basic rename properties
Successive renames of a variable can be collapsed into a single rename. Rename operations which have no variables in common can be arbitrarily reordered with respect to one another, which can be exploited to make successive renames adjacent so that they can be collapsed.
#
#
Rename and set operators
Rename is distributive over set difference, union, and intersection.
#
#
#
Product and union
Cartesian product is distributive over union.
#
Implementations
The first query language to be based on Codd's algebra was Alpha, developed by Dr. Codd himself. Subsequently,
ISBL
ISBL (Information Systems Base Language) is the relational algebra notation that was invented for PRTV, one of the earliest database management systems to implement E.F. Codd's relational model of data.
Example
OS = ORDERS * SUPPLIERS
LIST OS ...
was created, and this pioneering work has been acclaimed by many authorities
as having shown the way to make Codd's idea into a useful language.
Business System 12
Business System 12, or simply BS12, was one of the first fully relational database management systems, designed and implemented by IBM's ''Bureau Service'' subsidiary at the company's international development centre in Uithoorn, Netherlands. ...
was a short-lived industry-strength relational DBMS that followed the ISBL example.
In 1998
Chris Date and
Hugh Darwen proposed a language called Tutorial D intended for use in teaching relational database theory, and its query language also draws on ISBL's ideas.
Rel is an implementation of Tutorial D.
Even the query language of
SQL is loosely based on a relational algebra, though the operands in SQL (
tables) are not exactly
relation
Relation or relations may refer to:
General uses
*International relations, the study of interconnection of politics, economics, and law on a global level
*Interpersonal relationship, association or acquaintance between two or more people
*Public ...
s and several useful theorems about the relational algebra do not hold in the SQL counterpart (arguably to the detriment of optimisers and/or users). The SQL table model is a bag (
multiset), rather than a set. For example, the expression
is a theorem for relational algebra on sets, but not for relational algebra on bags; for a treatment of relational algebra on bags see chapter 5 of the "Complete" textbook by
Garcia-Molina,
Ullman Ullman is a surname. Notable people with the surname include:
*Al Ullman (1914–1986), American politician
*Berthold Ullman (1882–1965), American classical scholar
*Edward Ullman (1912–1976), American geographer
*Ellen Ullman, American author
...
and
Widom.
See also
*
Cartesian product
In mathematics, specifically set theory, the Cartesian product of two sets ''A'' and ''B'', denoted ''A''×''B'', is the set of all ordered pairs where ''a'' is in ''A'' and ''b'' is in ''B''. In terms of set-builder notation, that is
: A\ti ...
*
D4 (programming language) (an implementation of D)
*
Database
*
Logic of relatives
Charles Sanders Peirce ( ; September 10, 1839 – April 19, 1914) was an American philosopher, logician, mathematician and scientist who is sometimes known as "the father of pragmatism".
Educated as a chemist and employed as a scientist for t ...
*
Object-role modeling
*
Projection (mathematics)
*
Projection (relational algebra)
*
Projection (set theory)
*
Relation
Relation or relations may refer to:
General uses
*International relations, the study of interconnection of politics, economics, and law on a global level
*Interpersonal relationship, association or acquaintance between two or more people
*Public ...
*
Relation (database)
*
Relation algebra
In mathematics and abstract algebra, a relation algebra is a residuated Boolean algebra expanded with an involution called converse, a unary operation. The motivating example of a relation algebra is the algebra 2''X''² of all binary relations ...
*
Relation composition
*
Relation construction
In logic and mathematics, relation construction and relational constructibility have to do with the ways that one relation is determined by an indexed family or a sequence of other relations, called the ''relation dataset''. The relation in the ...
*
Relational calculus
*
Relational database
A relational database is a (most commonly digital) database based on the relational model of data, as proposed by E. F. Codd in 1970. A system used to maintain relational databases is a relational database management system (RDBMS). Many relatio ...
*
Relational model
The relational model (RM) is an approach to managing data using a Structure (mathematical logic), structure and language consistent with first-order logic, first-order predicate logic, first described in 1969 by English computer scientist Edgar F. ...
*
Theory of relations
*
Triadic relation
*
Tuple relational calculus
*
SQL
*
Datalog
*
Codd's theorem
Notes
References
Further reading
Practically any academic textbook on databases has a detailed treatment of the classic relational algebra.
* (For relationship with
cylindric algebra
In mathematics, the notion of cylindric algebra, invented by Alfred Tarski, arises naturally in the algebraization of first-order logic with equality. This is comparable to the role Boolean algebras play for propositional logic. Cylindric algebra ...
s).
External links
RAT. Software Relational Algebra Translator to SQL- An introduction to how database systems process relational algebra
– A quick tutorial to adapt SQL queries into relational algebra
*
Query Optimization">ttp://www-db.stanford.edu/~widom/cs346/ioannidis.pdf Query Optimization(Page deleted; Closest alternatives
Standford Query Optimization 2Microsoft research Query Optimization in relational systemsStanford paper: Query OptimizationThis paper is an introduction into the use of the relational algebra in optimizing queries, and includes numerous citations for more in-depth study.
Relational Algebra System for Oracle and Microsoft SQL Server*
ttp://des.sourceforge.net DES – An educational tool for working with Relational Algebra and other formal languagesRelaX - Relational Algebra Calculator(open-source software available as an online service without registration)
RA: A Relational Algebra InterpreterTranslating SQL to Relational Algebra{{Databases
Relational model