Reference articles on history, science, culture and more
Encyclopedia

Projection (relational algebra)

Operation that restricts a relation to a specified set of attributes

In relational algebra, a projection is a unary operation written as \Pi _{a_{1},...,a_{n}}(R), where R is a relation and a_{1},...,a_{n} are attribute names. Its result is defined as the set obtained when the components of the tuples in R are restricted to the set \{a_{1},...,a_{n}\}, it discards (or excludes) the other attributes.

In practical terms, if a relation is thought of as a table, then projection can be thought of as picking a subset of its columns. For example, if the attributes are (name, age), then projection of the relation {(Alice, 5), (Bob, 8)} onto attribute list (age) yields {5,8}, we have discarded the names, and only know what ages are present.

Projections may also modify attribute values. For example, if R has attributes a, b, c, where the values of b are numbers, then \Pi _{a,\ b\times 0.5,\ c}(R) is like R, but with all b-values halved.

02Example

For an example, consider the relations depicted in the following two tables which are the relation Person and its projection on (some say "over") the attributes Age and Weight:

{\text{Person}} \Pi _{\text{Age,Weight}}({\text{Person}})
Name Age Weight
Harry 34 180
Sally 28 164
George 28 170
Helena 54 154
Peter 34 180
Age Weight
34 180
28 164
28 170
54 154

Suppose the predicate of Person is "Name is age years old and weighs weight." Then the given projection represents the predicate, "There exists Name such that Name is age years old and weighs weight."

Note that Harry and Peter have the same age and weight, but since the result is a relation, and therefore a set, this combination only appears once in the result.

03Formal definition

More formally the semantics of projection are defined as follows:

\Pi _{a_{1},...,a_{n}}(R)=\{\ t[a_{1},...,a_{n}]:\ t\in R\ \},

where t[a_{1},...,a_{n}] is the restriction of the tuple t to the set \{a_{1},...,a_{n}\} so that

t[a_{1},...,a_{n}]=\{\ (a',v)\ |\ (a',v)\in t,\ a'\in \{a_{1},...,a_{n}\}\},

where (a',v) is an attribute value, a' is an attribute name, and v is an element of that attribute's domain, see Relation (database).

The result of a projection \Pi _{a_{1},...,a_{n}}(R) is defined only if \{a_{1},...,a_{n}\} is a subset of the header of R.

Projection over no attributes at all is possible, yielding a relation of degree zero. In this case the cardinality of the result is zero if the operand is empty, otherwise one. The two relations of degree zero are the only ones that cannot be depicted as tables.

Watch videos about Projection (relational algebra)Explainers and documentaries on YouTube (opens in a new tab)

Sources and credits

This article is adapted from the Wikipedia article Projection (relational algebra), written by its contributors and licensed under CC BY-SA 4.0. Fathomly has changed the layout, removed citation markers, navigation and maintenance notices, and adjusted punctuation. This adapted version is shared under the same license. For references, see the original article.

Fathomly is not affiliated with or endorsed by the Wikimedia Foundation. Spotted a problem? Tell us.