kar
kar

Reputation: 3651

Normalisation from 1nf to 2nf

I have converted the following 1NF table to 2NF as follows. Still having doubt if I have done it right and also unable to determine the transitive dependency.

I believe - cdName is transitively dependent on cdId via date.

Thanks for any advice.

1NF

2NF

Upvotes: 0

Views: 2182

Answers (1)

D Stanley
D Stanley

Reputation: 152566

You are correct - cdName should be in the table keyed by 'cdId'. You should also have a table keyed by recId with the recName attribute.

(Your "band" table has duplicate entires, but that's a data issue, not a design issue.)

Upvotes: 1

Related Questions