edited by
1,639 views
2 votes
2 votes

What would be the minimum number of tables for the given ER-Diagram such that the relational database satisfies 1NF?
The question has already been discussed in the link  here but its concept is contradicting the concept explained here . So i am confused which one is right.

edited by

1 Answer

0 votes
0 votes
For Multi valued attribute in Bank entity we have to make another table with schema as

1.X(Code,Phone_no)--Code,Phone_no combined Primary key

2.Bank(Code, Name,Address) --- Code is Primary key

3.Bank Branch(Address,Branch_No,Bank Name,Code) ---- Branch_No is Primary key and Code is a FK referring to Bank entity Primary key.

4.Loan(Loan_No,Amount,Type, Branch_No)---Loan_No as Primary key, Branch_No as FK referring to Loan entity Primary key.

Related questions

0 votes
0 votes
1 answer
1
Verma Ashish asked Aug 9, 2018
3,820 views
What is the min and max number of tables required to convert an ER diagram with 2 entities and 1 relationship between them with partial participation constraints of both ...
1 votes
1 votes
6 answers
2
Abbas2131 asked Jul 30, 2018
2,294 views
What are minimum number of tables required for the following given ER models such that they satisfy 1NF ?
0 votes
0 votes
1 answer
3
aoao asked Sep 26, 2018
2,461 views
The Answer is 3. But I think only 2 are required as R2 is many(E3) to one(E1) with total participation.Thus tables formed E2R1(DFA) with pk as DA. R2(GHABC) with pk as G....