Chapter: 7.2 Database Topic: 7.2.1 Introduction To Database: E-Content of It Tools and Business System
Chapter: 7.2 Database Topic: 7.2.1 Introduction To Database: E-Content of It Tools and Business System
Introduction to Database
About Data
The term data can be defined as set of isolated and unrelated raw facts with an
implicit meaning.
Data can be anything such as name of person, a number, images, sound etc.
About Database
Page | 4
E-Content of
IT TOOLS AND BUSINESS SYSTEM
Page | 5
E-Content of
IT TOOLS AND BUSINESS SYSTEM
Relational Database
A relational database is a collection of data items organized as a set of formally-
described tables from which data can be accessed or reassembled in many
different ways without having to reorganize the database tables.
The relational database was invented by E. F. Codd at IBM in 1970.
The standard user and application program interface to a relational database is
the structured query language (SQL).
SQL statements are used for both interactive queries for information from a
relational database and for gathering data for reports.
A relational database is a set of tables containing data fitted into predefined
categories.
Each table (which is sometimes called a relation) contains one or more data
categories in columns. Each row contains a unique instance of data for the
categories defined by the columns.
The following intuitive correspondence can be made
A relation is a file.
Each file contains only one record type.
The records have no particular order.
Every field is single-valued.
The records have a unique identifying field or composite field, called the
primary key field.
With a relational database, user can quickly compare information because of the
arrangement of data in columns.
The relational database model takes advantage of this uniformity to build
completely new tables out of required information from existing tables.
In other words, it uses the relationship of similar data to increase the speed and
versatility of the database.
Page | 6
E-Content of
IT TOOLS AND BUSINESS SYSTEM
Page | 7