what is entity relationship data model? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

what is entity relationship data model?

16th Oct 2020, 7:36 AM
shoki
2 Answers
+ 1
Data modeling is a conceptual design process that focuses on what data is stored in a database. An entity is a principal data "object" or element about which data is to be collected. Similar to tables in a relational model. Entity-Relationship data model is the art of modelling data based on entities and relationships between entities. In most implementations these relationships are simply a binary or recursive mapping between entities. Object relational mapping is perhaps the widest usage of ER modelling as seen in Doctrine, Eloquent, Hibernate, Django ORM etc.
16th Oct 2020, 8:32 AM
Ore
Ore - avatar