What are the differences between hierarchical, network and relational data models?

时间:2018-12-03 13:02:24

标签: rdbms hierarchical datamodel

Please tell me what is difference between hierarchical, network and relational data models?

1 个答案:

答案 0 :(得分:1)

分层模型

1.One to many or one to one relationships.
2.Based on parent child relationship.
3.Retrieve algorithms are complex and asymmetric
4.Data Redundancy more

网络模型

1.Many to many relationships.
2.Many parents as well as many children.
3.Retrieve algorithms are complex and symmetric
4.Data Redundancy more

关系模型

1.One to One,One to many, Many to many relationships.
2.Based on relational data structures.
3.Retrieve algorithms are simple and symmetric
4.Data Redundancy less
相关问题