Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a table:

Person with columns:

pID(PK)
FName
LName
plID(FK)

Another table Place with:

plID(PK)
plCity
plState
plZip

Is it better to just have Person made like:

pID(PK)
FName
LName
City
State
Zip

For instance:

John Doe New York, NY 00000
Jane Doe New York, NY 00000
Jim Doe New York, NY 00000
share|improve this question
@transistor1 - good link, thanks – CodeTalk Mar 20 '12 at 1:51

1 Answer

up vote 5 down vote accepted

You should normalize a database to eliminate data redundancy. In your case, it is very likely that you'll have a lot of people from the same place, which would cause data redundancy.

Therefore the answer is yes. You should absolutely normalize your database. You could possibly just include the zip code in the Person table and let that be a foreign key in Person and primary key in Place.

share|improve this answer
I agree. The only gotcha is to ensure that when John Doe moves to San Francisco, CA 99999, it is only he that moves and not everyone else who was in New York, NY, 00000. – Jonathan Leffler Mar 20 '12 at 2:01
@JonathanLeffler Using my proposed design, you would just change the zip code in the Person table to 99999. Naturally, Place should not be touched. – kba Mar 20 '12 at 2:03
Well, I forgot to include, this table has a PersonID(PK) instead, so it would simply update where this PersonID = whatevernyzipwas to the new zip... in psuedo-sql :) – CodeTalk Mar 20 '12 at 2:06
Thanks @KristianAntonsen ! – CodeTalk Mar 20 '12 at 2:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.