Comparison Between Hierarchical model Network model Relational model

Hierarchical Model:

It was developed by IBM in 1968 and it was introduced in IMS (Information Management System). This model is like a tree structure with the records forming the nodes and fields forming the tree branches.

Network Model:

In network database structure, a record type can have multiple owners. In the network model, data are represented by records using links. It is an improvement over the hierarchical model, here we can have many to many relationships (M: M) among records.

Relational Model:

In a Relational Database Model, data is organized in the form of rows and columns similar to a table. The tables are referred to as relations in a relational data model. The rows of the table are referred to as tuples and the columns of a table are referred to as attributes.

We can Comparison Between Hierarchical model Network model Relational model are given below:

Hierarchical model vs Network model vs Relational model:

Hierarchical Data ModelNetwork Data ModelRelational Data Model
1. Relationship between records is of the parent child type.1. Relationship between records is expressed in the form of pointers or links.1.Relationship between records is represented by a relation that contains a key for each record involved in the relationship.
2. Many to many relationship cannot be expressed in this model2. Many to many relationship can also be implemented in this model2. Many to many relationship can be easily implemented.
3. It is a simple, straightforward and natural method of implementing record relationships. 3. Record relationship implementation is quite complex due to the use of pointers.3. Relationship implementation is very easy through the use of a key or composite key field.
4. This type of model is useful only when there is some hierarchical character in the database. 4. Network model is useful for representing such records which have many to many relationships.4. Relational model is useful for representing most of the real world objects and relationships among them.
5. Searching for a record is very difficult since one can retrieve a child only after going through its parent record.5. Searching for a record is easy since there are multiple access paths to a data element.5. A unique, indexed key field is used to search for a data element.
6. In Hierarchical model record relations are physical.6.In Network model record relations are physical.6. Relational model does not maintain physical connection among records, data is organized logically in the form of rows and columns and stored in table.
7. During updation or deletion process, chances of data inconsistency is involved.7. No problem of inconsistency exists in Network model.7. Data integrity maintaining methods like Normalization process are adopted for consistency.