870 views

2 Answers

Best answer
3 votes
3 votes

One Relation for E1
One Relation for E2R (since E2 has total participation, R can be merged with E2 with new key as composite key containing key from E2 and E1).

Eg.

E1: 

A (Key) B
a1 b1
a2 b2
a3 b3

E2:

C (Key) D
c1 d1
c2 d2
c3 d3

Relation R - 

Key of E1 Key of E2
a1 c1
a2 c1
a2 c2
a1 c3

Here E1 has partial participation as a3 does not participate in any relation. E2 has total participation because all c1, c2 and c3 participate in some relation.

So we can combine E2 and R as 

E2R - (CA is a composite key)

C D A
c1 d1 a1
c1 d1 a2
c2 d2 a2
c3 d3 a1

Hence 2 relations are required.

selected by
0 votes
0 votes

1 for E1,1 for E2 and both of them has M:N relation for this 1 table ....

overall 3 tables are required

Related questions

5 votes
5 votes
1 answer
1
Ashish Sharma 3 asked Nov 24, 2017
2,674 views
How many minimum relations required for the above ER diagram?According to me it should be 7. Please let me know the answer according to you.
15 votes
15 votes
13 answers
2
targate2018 asked Aug 12, 2017
8,850 views
How many minimum relations required for given ER diagram ?
11 votes
11 votes
4 answers
3
targate2018 asked Aug 11, 2017
11,659 views
The minimum number of tables to represent ER-Diagram such that the relational database satisfies 1NF.
0 votes
0 votes
2 answers
4
sushmita asked Jan 31, 2017
1,115 views
while converting one to one relationship from ER diagram to RDMS, without total participation on either side, we can represent the relationship using primary- foreign key...