Database Management System Using LibreOffice Base
Database Management System Using LibreOffice Base
Database Management System Using LibreOffice Base
• The data elements are stored in different tables made up of rows and columns.
• The data in different tables are related through the use of common fields.
• So relations are set between tables based on common fields
• That is why this model is termed as relational database model
• Relational Database – A relational database is a collection of related tables.
RDBMS Illustration:-
Relational Database System(RDBMS)
Terminology
• Entity – It is a real world object about which information is to be stored in a database.
• Table – A table is a collection of logically related records. It is organised as a set of
columns, and can have any number of rows.
• Field or Columns or attributes – Field or Columns are the individual piece of data stored
within a table. Each field has a datatype associated with it, such as text, number, date
etc.
• Data Values – Data values are the raw data represented in numeric, character or
alphanumeric form.
• Record or Row -A record holds the data values of all the fields for a single person or
object in a table.
• Key- A key is a field or combination of field that uniquely identify a record in a table.
Keys are essential for data integrity and for establishing relationships between tables in a
RDBMS.
Continued………
• 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. So in the table Student Marks,
Enrollment Number and Roll Number both are candidate keys.
Alternate Key –