Database
Database
Information
It is a data that has been processed thereby making it. Relevant and meaningful to the person
viewing it. Information is dynamic because it changes relative to the data stored in the database and
it could be processed in many ways.
Null
It is used to represent a value that is unknown or missing. A null value is neither a zero nor a
blank.
Table
It is the main structure in the relational database. It is composed of attributes (fields) and
domain (records). A table almost always represents a subject that can be an object (person,
place, or thing) or an event.
File
It is an organized collection of data about an entity. As an example, for a bookstore, a file
called “Branch” can contain all the data about a particular bookstore branch.
Record
It refers to a specific person, place, thing, or event. Record is also known as the “tuple” in
the relational database terminology. It pertains to structure in the database table
representing a unique instance of a subject.
Field
It is the smallest structure of a data from a larger database structure in a relational
database. A field can store data in a database and represent a character of the subject to
which database table it resides.
View
It is also known as a virtual table. It is called a virtual table since it does not hold data on its own;
rather it gets data from the table which it is based. And since it comes from other table it is
composed of several fields coming from one or more data.
Keys
These are fields that serve specific purposes within a table. There are two types of keys, the
primary key and the foreign key. The Primary key is a field that uniquely identifies a record
in the table. The Foreign key is a special field that establishes a relationship between two
tables.
Relationship
They exist when two or more tables have connection or association.