Hello,
I have a main table called tblproperties
It has a field TYPE
The values for the TYPE field come from a table called tblPropertyTypes
When storing a value in the field TYPE, I can either store the actual Value (i.e. house, flat etc) or the primary key of the table tblPropertyTypes.
I am not sure which is best:
If I store the actual Value, for example Flat and later wanted to change the wording from Flat to Apartment I would have to update all previous records. Otherwise if I just stored the primary key i.e. 2, it would save the updating, but be less clear at table level, during queries etc...
What is the best way to approach this?
Many thanks Mark
I have a main table called tblproperties
It has a field TYPE
The values for the TYPE field come from a table called tblPropertyTypes
When storing a value in the field TYPE, I can either store the actual Value (i.e. house, flat etc) or the primary key of the table tblPropertyTypes.
I am not sure which is best:
If I store the actual Value, for example Flat and later wanted to change the wording from Flat to Apartment I would have to update all previous records. Otherwise if I just stored the primary key i.e. 2, it would save the updating, but be less clear at table level, during queries etc...
What is the best way to approach this?
Many thanks Mark