![]() |
![]() |
Getting Started with HP IMAGE/SQL: HP 3000 MPE/ iX Computer Systems > Chapter 2 Basic Concepts![]() What Is a Relational Database? |
|
A relational database is a collection of data arranged in tables, also known as relations. Tables are subject to the following relational operations, each of which lets you retrieve data in a specific way:
In practice, these operations frequently appear together. An SQL statement that uses these operations is known as a query. Three queries that use the SQL SELECT statement to illustrate selection, projection, and joining are shown in Figure 2-1. When you look at data in relational terms, you can assume several things:
The following is a portion of a database table consisting of names and account balances for an employee credit union: Table 2-1 Employee Accounts
Each column can accept data of a specific type and size. Refer to Chapter 3, "Moving from TurboIMAGE/XL to IMAGE/SQL," for more details on data types. You can put the same data into several different tables, as shown below: Table 2-2 Table 1. Employees Table
Table 2-3 Table 2. Telephone Table
Table 2-4 Table 3. Accounts Table
You decide which arrangements of data work best for you by using the processes of data analysis and database design. In data analysis, you investigate the various ways your data can be used. In database design, you create specific table structures based on your analysis. The design phase results in a set of table descriptions, known as a schema, for your database. |