11,650 views
11 votes
11 votes

The minimum number of tables to represent ER-Diagram such that the relational database satisfies 1NF. 

4 Answers

11 votes
11 votes
There is only one condition that needs to be fulfilled in 1NF that all values should be atomic no other constraint

1 table is enough.

Every 1 NF can be brought under 1 table
5 votes
5 votes

$4$ tables. 

  1. {Ph_No}
  2. {Branches, Bank Branch}
  3. {Bank}
  4. { Loan, Loans }
4 votes
4 votes
4 tables are required

1.Bank(Code,Name,Address)

2. For multivalued attribute(Ph_No,Code)

3.Bank Branch(Addr,Branch_No,Code,Bank Name)

4.Loan(Loan_no,Amount,Type,Branch_no)
1 votes
1 votes
As phone number is multivalued attribute there should be one table for it.

Now Loan and the Loans can be combined into a single table as the relationship Loans is many-to-one relationship and participation is total in many side.There should be another one table.

Now there will be only one table needed for Bank,Branches and Bank Account.Because there is full participation between entities in the relationship.

So three tables should be there.But the question mentioned 1NF so we can combine these three tables into 1 table.So the final answer will be one I think.

Related questions

15 votes
15 votes
13 answers
1
targate2018 asked Aug 12, 2017
8,829 views
How many minimum relations required for given ER diagram ?
0 votes
0 votes
2 answers
2
Balaji Jegan asked Nov 4, 2018
2,294 views
How many minimum number of tables needed for this Quaternary Relationship?
1 votes
1 votes
6 answers
3
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 ?
5 votes
5 votes
1 answer
4
Ashish Sharma 3 asked Nov 24, 2017
2,670 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.