AlexDP wrote:
I really want just one table that will contain a variety of information.
When I enter the supplier's name I want the category (say the type of goods supplied/department) to be automatically added.
Somewhere I would have to pre-define each supplier and the catagory to go with it. Each catagory would have several suppliers.
|
I think that would be your second table. Or at least a text array that you could reference when inserting.
Just from the info... I would say two tables.
tbl_Supplier_Contact
Name | Address | Phone | etc
tbl_Supplier_Categories
Category_Name | Category_Info |
If the supplier can belong to more than one category, then it gets interesting in that you have to allow multiple selections. I'm thinking a category column in the contact table would be all you need.
(Just thinking out loud.)
Edited by dfrancis - 02 August 2005 at 5:04pm