T
TC
Where I live it is suburb, state, postcode; for example:
Walkerville, SA, 5081
There are about 8,000 of these. The same suburb name can occur in different
states (with different postcodes). A single postcode can cover several
suburbs (in the same state). So there is certainly the potential to have
tblSuburb, tblState and tblPostcode, & relate those together.
However, I just have a single table with 3 fields & 8,000 records. This is
because I do not need to store any additional informatiion about suburbs,
states or postcodes - so there is no duplication.
If I *did* need to store exatra information about suburbs, or states, or
postcodes, I would go the 3-table way, to avoid any duplication. For
example, if I needed to store the date that each postcode was first used in
this country, I would have tblPostcode containing postcode (pk) &
date-first-used.
HTH,
TC
Walkerville, SA, 5081
There are about 8,000 of these. The same suburb name can occur in different
states (with different postcodes). A single postcode can cover several
suburbs (in the same state). So there is certainly the potential to have
tblSuburb, tblState and tblPostcode, & relate those together.
However, I just have a single table with 3 fields & 8,000 records. This is
because I do not need to store any additional informatiion about suburbs,
states or postcodes - so there is no duplication.
If I *did* need to store exatra information about suburbs, or states, or
postcodes, I would go the 3-table way, to avoid any duplication. For
example, if I needed to store the date that each postcode was first used in
this country, I would have tblPostcode containing postcode (pk) &
date-first-used.
HTH,
TC