Quote:
|
Originally Posted by dportas
Determine your FDs before the logical design, not afterwards.
Pootle is right. Inventing your own keys for things and then failing to identify other keys (or any keys at all) in the model is a futile exercise. Unfortunately it's also an all-to-common error among database developers.
|
These are the FDs I've determined from the description...
game_name -> qty_in_stock, status
status -> rental_price, rental_period, daily_fee
member_name -> member_street, member_zip, member_phone, member_city, member_state
member_zip -> member_city, member_state
{member_street, member_city, member_state} -> member_zip
status-> payment_type
Am I missing any? Any suggestions? How should I proceed?