Skip to main content
Engineering LibreTexts

1.7: Chapter 7 The Relational Data Model

  • Page ID
    6880
  • \( \newcommand{\vecs}[1]{\overset { \scriptstyle \rightharpoonup} {\mathbf{#1}} } \) \( \newcommand{\vecd}[1]{\overset{-\!-\!\rightharpoonup}{\vphantom{a}\smash {#1}}} \)\(\newcommand{\id}{\mathrm{id}}\) \( \newcommand{\Span}{\mathrm{span}}\) \( \newcommand{\kernel}{\mathrm{null}\,}\) \( \newcommand{\range}{\mathrm{range}\,}\) \( \newcommand{\RealPart}{\mathrm{Re}}\) \( \newcommand{\ImaginaryPart}{\mathrm{Im}}\) \( \newcommand{\Argument}{\mathrm{Arg}}\) \( \newcommand{\norm}[1]{\| #1 \|}\) \( \newcommand{\inner}[2]{\langle #1, #2 \rangle}\) \( \newcommand{\Span}{\mathrm{span}}\) \(\newcommand{\id}{\mathrm{id}}\) \( \newcommand{\Span}{\mathrm{span}}\) \( \newcommand{\kernel}{\mathrm{null}\,}\) \( \newcommand{\range}{\mathrm{range}\,}\) \( \newcommand{\RealPart}{\mathrm{Re}}\) \( \newcommand{\ImaginaryPart}{\mathrm{Im}}\) \( \newcommand{\Argument}{\mathrm{Arg}}\) \( \newcommand{\norm}[1]{\| #1 \|}\) \( \newcommand{\inner}[2]{\langle #1, #2 \rangle}\) \( \newcommand{\Span}{\mathrm{span}}\)\(\newcommand{\AA}{\unicode[.8,0]{x212B}}\)

    author: Adrienne Watt

    The relational data model was introduced by C. F. Codd in 1970. Currently, it is the most widely used data model.

    The relational model has provided the basis for:

    • Research on the theory of data/relationship/constraint
    • Numerous database design methodologies
    • The standard database access language called structured query language (SQL)
    • Almost all modern commercial database management systems

    The relational data model describes the world as “a collection of inter-related relations (or tables).”

    Fundamental Concepts in the Relational Data Model

    Relation

    A relation, also known as a table or file, is a subset of the Cartesian product of a list of domains characterized by a name. And within a table, each row represents a group of related data values. A row, or record, is also known as a tuple. The columns in a table is a field and is also referred to as an attribute. You can also think of it this way: an attribute is used to define the record and a record contains a set of attributes.

    The steps below outline the logic between a relation and its domains.

    1. Given n domains are denoted by D1, D2, … Dn
    2. And r is a relation defined on these domains
    3. Then r ⊆ D1×D2×…×Dn

    Table

    A database is composed of multiple tables and each table holds the data. Figure 7.1 shows a database that contains three tables.

    Blue cylinder with three white rectangles each with a list of words.

    Figure 7.1. Database with three tables.

    Column

    A database stores pieces of information or facts in an organized way. Understanding how to use and get the most out of databases requires us to understand that method of organization.

    The principal storage units are called columns or fields or attributes. These house the basic components of data into which your content can be broken down. When deciding which fields to create, you need to think generically about your information, for example, drawing out the common components of the information that you will store in the database and avoiding the specifics that distinguish one item from another.

    Look at the example of an ID card in Figure 7.2 to see the relationship between fields and their data.

    Record-300x177

    Figure 7.2. Example of an ID card by A. Watt.

    Domain

    A domain is the original sets of atomic values used to model data. By atomic value, we mean that each value in the domain is indivisible as far as the relational model is concerned. For example:

    • The domain of Marital Status has a set of possibilities: Married, Single, Divorced.
    • The domain of Shift has the set of all possible days: {Mon, Tue, Wed…}.
    • The domain of Salary is the set of all floating-point numbers greater than 0 and less than 200,000.
    • The domain of First Name is the set of character strings that represents names of people.

    In summary, a domain is a set of acceptable values that a column is allowed to contain. This is based on various properties and the data type for the column. We will discuss data types in another chapter.

    Records

    Just as the content of any one document or item needs to be broken down into its constituent bits of data for storage in the fields, the link between them also needs to be available so that they can be reconstituted into their whole form. Records allow us to do this. Records contain fields that are related, such as a customer or an employee. As noted earlier, a tuple is another term used for record.

    Records and fields form the basis of all databases. A simple table gives us the clearest picture of how records and fields work together in a database storage project.

    image

    Figure 7.3. Example of a simple table by A. Watt.

    The simple table example in Figure 7.3 shows us how fields can hold a range of different sorts of data. This one has:

    • A Record ID field: this is an ordinal number; its data type is an integer.
    • A PubDate field: this is displayed as day/month/year; its data type is date.
    • An Author field: this is displayed as Initial. Surname; its data type is text.
    • A Title field text: free text can be entered here.

    You can command the database to sift through its data and organize it in a particular way. For example, you can request that a selection of records be limited by date: 1. all before a given date, 2. all after a given date or 3. all between two given dates. Similarly, you can choose to have records sorted by date. Because the field, or record, containing the data is set up as a Date field, the database reads the information in the Date field not just as numbers separated by slashes, but rather, as dates that must be ordered according to a calendar system.

    Degree

    The degree is the number of attributes in a table. In our example in Figure 7.3, the degree is 4.

    Properties of a Table

    • A table has a name that is distinct from all other tables in the database.
    • There are no duplicate rows; each row is distinct.
    • Entries in columns are atomic. The table does not contain repeating groups or multivalued attributes.
    • Entries from columns are from the same domain based on their data type including:
      • number (numeric, integer, float, smallint,…)
      • character (string)
      • date
      • logical (true or false)
    • Operations combining different data types are disallowed.
    • Each attribute has a distinct name.
    • The sequence of columns is insignificant.
    • The sequence of rows is insignificant.

    Key Terms

    atomic value: each value in the domain is indivisible as far as the relational model is concerned

    attribute: principle storage unit in a database

    column: see attribute

    degree: number of attributes in a table

    domain: the original sets of atomic values used to model data; a set of acceptable values that a column is allowed to contain

    field: see attribute

    file: see relation

    record: contains fields that are related; see tuple

    relation: a subset of the Cartesian product of a list of domains characterized by a name; the technical term for table or file

    row: see tuple

    structured query language (SQL): the standard database access language

    table: see relation

    tuple: a technical term for row or record

    Terminology Key

    Several of the terms used in this chapter are synonymous. In addition to the Key Terms above, please refer to Table 7.1 below. The terms in the Alternative 1 column are most commonly used.

    A database table with words.

    Table 7.1. Terms and their synonyms by A. Watt.


    This page titled 1.7: Chapter 7 The Relational Data Model is shared under a CC BY license and was authored, remixed, and/or curated by Adrienne Watt (BCCampus) .

    • Was this article helpful?