Forum Moderators: coopster
The Country is a Menu Field and the values get populated from another table, which have two colums, Country_ID and Country.
Which would be right thing to do? Populate Memers table with the Country_ID or Country? Is a Unique/Foriegn Key required when the Countries itself would be not be repeated and unique?
Thanks for the Support
The standard way to do this would be as follow:
Members(Name, Age, Country)
Country(ID, Name) Where Members.Country references Country.ID (this is the foreign key relationship).
Another solution would be to remove the 'Country' table and simply store the country name in the 'Members' table, however, from a design perspective, the first solution is better.
arran.