If I have a table that has repeated data but it doesn't need any additional information associated with it should I still make a table and use the ID in the main table?
I understand why you would normalize customer. If you did you could then add address, contact info etc and still only have one main value in the table. However, if I have something like contents that will be repeated several times but doesn't need any other fields associated with it, it seems easier for searching to just leave that field as its text value.
My thoughts are:
It is easier to add a value to a table than a value list for users who are not experienced with access.
If the list has 30+ items it can be more difficult to manage than a table
HOWEVER,
Searching is more difficult if you have a number instead of the value in the field. You can't do the simple finds and filters.
Basically I am asking:
1. Should i use a select list instead of creating a table if I want the data to be consistent but the field in question is a single text string and doesnt have any data related to it?