Hi Lounge, As I am slowly learning how to make a database a few things I need to clear up with tables since its the most important part of how the database works.
I see tables as having a few different roles
Firstly, a table should only have data related to the table name.
Using Primarykeys and Foreign or composite keys a multiple number of tables can be connected, thus sharing the information.
If I make a table for the sole purpose of being a list for a combo box which is bound to a feild in a specific table, there is no reason for this table to have a relationship so a list table would need a ListID (autonumber) and ListEntry?
If a another table were to use the list from the above how would it get these values and not effect the list?
In relation to User Forms and a Table
How can a table have a field with a subfield property which will allow more then 1 value entered for a field? for example.
1 order number can have a schedule with a multiple number of zones.
Order number field
Zone field
– Zone 1 Bob
– Zone 2 Craig
– Zone 3 Ben
Thanks for helping me