Skip to main content

E-R model DBMS

 

Symbols Used in ER Model





ERD

  • The ER data mode was developed to facilitate database design by allowing specification of an enterprise schema that represents the overall logical structure of a database. 
  • The ER model is very useful in mapping the meanings and interactions of real-world enterprises onto a conceptual schema. Because of this usefulness, many database-design tools draw on concepts from the ER model. 
  • The ER data model employs three basic concepts: 
    •  entity sets,  
    • relationship sets, 
    • attributes. 
  • The ER model also has an associated diagrammatic representation, the ER diagram, which can express the overall logical structure of a database graphically.




Components of ER Diagram


ER Model consists of Entities, Attributes, and Relationships among Entities in a Database System.



Entity

An Entity may be an object with a physical existence – a particular person, car, house, or employee – or it may be an object with a conceptual existence – a company, a job, or a university course. 


1. Strong Entity


A Strong Entity is a type of entity that has a key Attribute. Strong Entity does not depend on other Entity in the Schema. It has a primary key, that helps in identifying it uniquely, and it is represented by a rectangle. These are called Strong Entity Types.



2. Weak Entity


An Entity type has a key attribute that uniquely identifies each entity in the entity set. But some entity type exists for which key attributes can’t be defined. These are called Weak Entity types


Attributes

Attributes are the properties that define the entity type. For example, Roll_No, Name, DOB, Age, Address, and Mobile_No are the attributes that define entity type Student. In ER diagram, the attribute is represented by an oval.




1. Key Attribute

The attribute which uniquely identifies each entity in the entity set is called the key attribute




2. Composite Attribute

An attribute composed of many other attributes is called a composite attribute.




3. Multivalued Attribute

An attribute consisting of more than one value for a given entity.




4. Derived Attribute

An attribute that can be derived from other attributes of the entity type is known as a derived attribute.




Relationship Type and Relationship Set

A Relationship Type represents the association between entity types. For example, ‘Enrolled in’ is a relationship type that exists between entity type Student and Course. In ER diagram, the relationship type is represented by a diamond and connecting the entities with lines.


Cardinality

The number of times an entity of an entity set participates in a relationship set is known as cardinality. Cardinality can be of different types:


1. One-to-One: When each entity in each entity set can take part only once in the relationship, the cardinality is one-to-one. Let us assume that a male can marry one female and a female can marry one male. So the relationship will be one-to-one. 





2. One-to-Many: In one-to-many mapping as well where each entity can be related to more than one relationship and the total number of tables that can be used in this is 2.



3. Many-to-One: When entities in one entity set can take part only once in the relationship set and entities in other entity sets can take part more than once in the relationship set, cardinality is many to one. Let us assume that a student can take only one course but one course can be taken by many students. So the cardinality will be n to 1. It means that for one course there can be n students but for one student, there will be only one course.






4. Many-to-Many: When entities in all entity sets can take part more than once in the relationship cardinality is many to many. Let us assume that a student can take more than one course and one course can be taken by many students. So the relationship will be many to many





Key Constraints in DBMS


  • Constraints or nothing but the rules that are to be followed while entering data into columns of the database table 
  • Constraints ensure that data entered by the user into columns must be within the criteria specified by the condition 
  • For example, if you want to maintain only unique IDs in the employee table or if you want to enter only age under 18 in the student table etc 
  • We have 5 types of key constraints in DBMS
    • NOT NULL: ensures that the specified column doesn’t contain a NULL value.
    • UNIQUE : provides a unique/distinct values to specified columns.
    • DEFAULT: provides a default value to a column if none is specified.
    • CHECK :checks for the predefined conditions before inserting the data inside the table.
    • PRIMARY KEY: it uniquely identifies a row in a table.
    • FOREIGN KEY: ensures referential integrity of the relationship



Generalization – 
Generalization is the process of extracting common properties from a set of entities and create a generalized entity from it. It is a bottom-up approach in which two or more entities can be generalized to a higher level entity if they have some attributes in common.





Aggregation – 
An ER diagram is not capable of representing relationship between an entity and a relationship which may be required in some scenarios. In those cases, a relationship with its corresponding entities is aggregated into a higher level entity. Aggregation is an abstraction through which we can represent relationships as higher level entity sets.


Comments

Popular posts from this blog

Structure of Relational Databases

STRUCTURE OF RELATIONAL DATABASE What is Relational Model? Relational Model represents how data is stored in Relational Databases. A relational database stores data in the form of relations (tables). Consider a relation STUDENT with attributes ROLL_NO, NAME, ADDRESS, PHONE and AGE. Table : 2-Dimensional structure .(rows and columns) Attribute : Attributes are the properties that define a relation. e.g.; ROLL_NO, NAME  Relation Schema : A relation schema represents name of the relation with its attributes. e.g.; STUDENT (ROLL_NO, NAME, ADDRESS, PHONE and AGE) is relation schema for STUDENT. If a schema has more than 1 relation, it is called Relational Schema.  Tuple : Each row in the relation is known as tuple.  Relation Instance : The set of tuples of a relation at a particular instance of time is called as relation instance. Table 1 shows the relation instance of STUDENT at a particular time. It can change whenever there is insertion, deletion or updation in the database.  Degree :

Introduction to DBMS

 Database Management System (DBMS) • Collection of interrelated data  • Set of programs to access the data  • DBMS contains information about a particular enterprise  • DBMS provides an environment that is both convenient and efficient to use.  • Database Applications: • Banking: all transactions                                                          • Airlines: reservations, schedules                                                        • Universities: registration, grades                                                         • Sales: customers, products, purchases                                                       • Manufacturing: production, inventory, orders, supply chain