edited by
403 views
0 votes
0 votes

Number of tables required and also the attribute set of the tables

edited by

1 Answer

0 votes
0 votes
table (relation) schema
E1 (a11, a12)   //a11= pk (primary key)
E2(a21,a11)    //as a21 is derived attribute and it is not mention from which it is derived so pk = {a21,a11}
R13 (a21, a11, a31)    // m:n so it will have its own table with primary key of entities
E3 (a31)    // a31 = pk, not sure will a32 comes here or not although it will surely have a separate table with foreign key as a31 refering to primary key in e3.
E'3 (a31, a32)   // pk = {a31, a32}

Related questions

1 votes
1 votes
2 answers
1
Srken asked Nov 12, 2021
1,648 views
I think it needs three tables but have lil bit confusion
3 votes
3 votes
2 answers
3