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