in Databases
2,581 views
3 votes
3 votes

ER_Diagram

in Databases
2.6k views

1 comment

I think Answer should be 3, but given is 4..
5
5

4 Answers

9 votes
9 votes
Best answer
No of table will be 3

E1, E2,E3 we need 3 tables

but as it gives 1:n relationship , so no more tables are needed
selected by

3 Comments

Please mention the primary key and foreign key(if any) of each of the tables.
0
0
E3 will be saparate  with E is key
First E1 R will combine with key CG then E1 R P will combine with key E1 G
E2 will kept seperate with key G.
0
0
Primary key of table E3 i.e. E works as a foreign key in the relationship set E1PR. And primary key of E1PR is CG.

Is that correct?
0
0
2 votes
2 votes
While converting ER Diagram to Relation Table, We create a separate table for:

1. WEAK Entity.
2. STRONG Entity.
3. M:N Relationship.
4. Composite Attribute.
5. Multivalued Attribute.

So, answer = 3.

1 comment

We don't create seperate table for composite attributes.
2
2
0 votes
0 votes
I think the answer must be 4.

For E1,E2,E3 we will defiantly need one table each.

By putting primary key of E2 i,e G in E1's table we can specify the indentifing relationship R between them. Hence no need of table for R.

But For P we will need a different table in which we will put primary key of E3 i,e E and Primary key of E1 i,e C  as foreign keys and the primary key of the table for  P will be the combination of E and  C i,e EC

Hence we need total 4 tables( for E1, E2 ,E3 and for P)
0 votes
0 votes
Answere will be 3 tables as in 1:n case primary key of 1 side is taken as foreign key in N side which is used to reference 1 side table thus ER diagram is simplified to 2 tables ...same approach can be used for other side ...hence ER diagram is reduced to tables E3(E,F) , E1(C,D,E,G) , E3(E,F)

Related questions

1 vote
1 vote
3 answers
1