Relational Query Languages

A query language is a language using which a user can request data from the database.

Query Languages can be procedural (the user instructs the system to perform a set of operations on the database) or non-procedural (the user specifies only what information is needed without specifying how to obtain that information).

We will discuss the following relational query languages:

  • Relational Algebra (procedural)

  • Tuple Relational Calculus (non-procedural)

  • Domain Relational Calculus (non-procedural)

Relational Operators

A relational operator takes as input one or more relations and outputs a new relation.

  • selection of tuples

    The selection operator σ\sigma returns the rows of a relation that satisfy a selection predicate.

    Ex. σA=BandC>5(r)\sigma _{A=B\, and\, C>5}(r)

  • selection of columns (projection)

    The projection operator is denoted by Π\Pi

    Ex. ΠA,C(r)\Pi _{A,\, C} (r)

    Note that duplicate tuples will be eliminated automatically.

  • join (cartesian product)

    This operation is applied on two relations and the output is another relation. The join operator (×\times) basically merges pairs of tuples, one from each relation, to create a new relation.

  • union

    The union operation (\cup) can be performed on two relations that have the same attributes.

  • set difference

    The set difference (-) operation can be performed on two relations that have the same attributes. The result will contain tuples that are in the first relation but not those that are in the second relation.

  • theta join rθs=σθ(r×s)r\bowtie _\theta s = \sigma _\theta (r \times s)

  • outer join The outer join operation (\sqsupset\bowtie, \bowtie\sqsubset, \sqsupset\bowtie\sqsubset) ia an extension of the join (natural join) operation that avoids loss of information. It computes the join and then adds tuples from one relation that do not match tuples in the other relation to the result of the join. null is used to denote missing values in the result.

  • rename The rename operator (ρ\rho) allows us to name, and therefore refer to, the results of a relational operation.

  • assignment The assignment operator (\leftarrow) lets us assign the result of an operation to a temporary relation variable.

More about null values

  • Two nulls are treated to be the same

  • The result of any arithmetic operation involving a null value is null

  • Comparisons with null values return the special truth value: unknown

  • Three-valued logic using the truth value unknown:

    • OR:

      (unknown or true) = true,

      (unknown or false) = unknown

      (unknown or unknown) = unknown

    • AND:

      (true and unknown) = unknown,

      (false and unknown) = false,

      (unknown and unknown) = unknown

    • NOT:

      (not unknown) = unknown

  • The result of select predicate is treated as false if it evaluates to unknown

Last updated