This commit is contained in:
MADAVARAM LAYA 2023-03-16 18:18:37 -07:00 committed by GitHub
commit f4ece8de10
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
# Design a database in UML without using ER diagram
The database can be designed using the Class diagram in UML, instead of the ER diagram.
## Approach
1. Identify the entities involved in the database.
2. Identify the attributes for every entity.
3. Identify the relationships between the entities.
4. For every entity develop a class diagram using UML.
5. The class name should be given as name of the entity identified in first step.
6. The attributes of each class should be taken as the attributes identified for the particular entity in second step.
7. The operations can be left empty for every class, as the entities will not be having any operations in database.
8. These classes can be joined using the association relationship in UML, as per the relationships identified in third step.