

















Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Data store with many realist. Database is use to provide to store data with in a diagram for example student are store data with the entity relation.
Typology: Thesis
1 / 25
This page cannot be seen from the preview
Don't miss anything!


















Relational Database
Management System
RDBMS
RDBMS stands for Relational Database Management
System
All modern database management system like SQL, MS
SQL Server, IBM DB2, ORACLE, My-SQL and Microsoft
Access are based on RDBMS
It is called Relational Database Management System
because it is based on relational model introduced by
E.F.Codd
Data is represented in terms of tuples (rows) in RDBMS.
Relational database is most commonly used Database. It
contains number of tables and each table has its own primary
key.
Due to a collection of organized set of tables, data can be
Accessed easily in RDBMS
The RDBMS use tables to store data.
A table is collection of related data entries and
contains rows and columns to store data
A table is the simplest example of data storage in
RDBMS
A table is considered as convenient
representation of Relations. But a table have
duplicate value but a relation cannot have
duplicate value
A row of table is called record.
It contains the specific information of
each
individual entry in a table. It is horizontal
entity.
Record/ Rows
A NULL value in a table is a value in a field that appears
to be blank, which means a field with a NULL value is a
field with no value
It is very important to understand that a NULL value is
different than a zero or a field that contains spaces. A field
with a NULL values is one that has been left blank during
record creation
Keys are very important part of Relational database. They
are used to establish and identify relation between tables.
They also ensure that each record within a table can be
uniquely identified by the combination of one or more field
within a table
Key is a set of one or more columns whose combined
values are unique among all occurrence in a given table
SUPER KEY
CANDIDATE KEY
PRIMARY KEY
FOREIGN KEY
ALTERNATIVE KEY
COMPOSITE KEY
SECONDARY/ ALTERNATIVE KEY
NON-PRIME KEY
“Super key” is a set of one or more than one key
that can used as to identify a record uniquely in a
table
Example:
Primary key, Unique Key, Alternative key are subset
of Super key
There can be multiple candidate key in one table.
Each candidate key can work as a primary key.
Primary key is a candidate key that is most appropriate
to because main key of the table.
Primary key is a set of one or more fields or columns
of a table that uniquely identify a record in database