Print
DBMS

Degree of Relationship

 

 

A relationship degree indicates the number of entities or participants associated with a relationship. A unary relationship exists when an association is maintained within a single entity. A binary relationship exists when two entities are associated. A ternary relationship exists when three entities are associated. Although higher degrees exist, they are rare and are not specifically named. (For example, an association of four entities is described simply as a four-degree relationship.)

Unary Relationships

In the case of the unary relationship shown in the following Figure an employee within the EMPLOYEE entity is the manager for one or more employees within that entity. In this case, the existence of the “manages” relationship means that EMPLOYEE requires another EMPLOYEE to be the manager—that is, EMPLOYEE has a relationship with itself. Such a relationship is known as a recursive relationship.

Degree of Relationship_unary Relationship

Binary Relationships

 

 

A binary relationship exists when two entities are associated in a relationship. Binary relationships are most common. In fact, to simplify the conceptual design, whenever possible, most higher-order (ternary and higher) relationships are decomposed into appropriate equivalent binary relationships. For example the relationship “a PROFESSOR teaches one or more CLASSes” represents a binary relationship.

Degree of Relationship_Binary Relationship

Ternary and Higher-Degree Relationships

Although most relationships are binary, the use of ternary and higher-order relationships does allow the designer some latitude regarding the semantics of a problem. A ternary relationship implies an association among three different entities. For example, note the relationships (and their consequences) in the following Figure which are represented by the following business rules:

• A DOCTOR writes one or more PRESCRIPTIONs.

• A PATIENT may receive one or more PRESCRIPTIONs.

• A DRUG may appear in one or more PRESCRIPTIONs. (To simplify this example, assume that the business rule states that each prescription contains only one drug. In short, if a doctor prescribes more than one drug,  a separate prescription must be written for each drug.)

Degree of Relationship_ternary and higher relationship

 

Recursive Relationships:

 

A recursive relationship is one in which a relationship can exist between occurrences of the same entity set. (Naturally, such a condition is found within a unary relationship.) For example, a 1:M unary relationship can be expressed by “an EMPLOYEE may manage many EMPLOYEEs, and each EMPLOYEE is managed by one EMPLOYEE.”


Degree of Relationship_recursive relationship

 

 

You May Also Like:

Basic notations of ER diagram

Different types of Entities

Different types of Attributes

The database design challenges

Back to DBMS Questions