Chp-8-Introduction to Database Management System
Chp-8-Introduction to Database Management System
DBMS: The software that is used to create, update and retrieve data is known as
database management system (DBMS).
Data model : A database can be designed in different ways depending on the data
being stored. This structure of database is known as data model that describes
the manner in which data will be stored and retrieved.
Data Values – Data values are the raw data represented in numeric, character or
alphanumeric form. Examples of data values are ‘Abhinav Bindra’, ‘26’ ‘shooting’,
“Chandigarh”, “10-12-2018”,
Record or Row – The data values for all the fields related to a person or object is
called a record. It is presented as rows within a table. A record holds the data
values of all the fields for a single person or object in a table.
Primary Key – A primary key or simply a key is a field that uniquely identifies a row
in a table. The key identifier can be the value of a single column or of multiple
columns. The primary key is a unique identifier for the table.
Candidate Key – All the field values that are eligible to be the primary key are the
candidate keys for that table. Such fields can neither be left blank nor can have
duplicate values.
Alternate Key – Out of the candidate keys, one or two are made as primary keys.
The others are the alternate keys.