So I am attempting to create a database containing bid/equipment/cost information for an agricultural irrigation company.
I have 11 different tables, that are kind of broken into two separate "Areas" of technical information/equipment.
tblCustomers
*Farm_Corporation|First_Name|Last_Name....
tblEmployee
*EmployeeID|First_Name|Last_Name....
tblFieldSpecs
*Legals|FarmCorporation|GPS_Coordinates...
tblWell
*WellID|Water_Report|Chlorination...
tblDealer
*Dealer_Name|City|States|Address...
-----------------------------------------
tblEquipment
*Equipment_Type|Equipment_Description
tblSupplier
*Supplier_Name|Contact_Name|Phone|E-mail|Fax|Address...
tblValve
*Valve_Model|Equipment_Type|Supplier_Name|Size|GPM...
tblTape
*Tape_Model|Equipment_Type|Supplier_Name||Inner_Diameter...
tblFilter
*Filter_Model|Equipment_Type|Supplier_Name|Size...
tblController
*Controller_Model|Equipment_Type|Supplier_Name|Description
------------------------------------
tblBid
*BidID|EmployeeID|Legals|Dealer_Name|Season|Year|...|Valve_Model_1|Number_of_Model_1|Valve_Model_2|Number_of_Model_2|Valve_Model_3|Number_of_Model_3...
I guess I have just arbitrarily added the maximum amount of different types of valves/filter etc.. that would be used for each individual bid but I have no idea how to do it.
What I would like to do is to create a form that allows the user to enter the different types of equipment/amounts/type etc... for each bid but I cannot figure out how to do it in a table.
Do I need to do a query for each job instead of using a table?
I have 11 different tables, that are kind of broken into two separate "Areas" of technical information/equipment.
tblCustomers
*Farm_Corporation|First_Name|Last_Name....
tblEmployee
*EmployeeID|First_Name|Last_Name....
tblFieldSpecs
*Legals|FarmCorporation|GPS_Coordinates...
tblWell
*WellID|Water_Report|Chlorination...
tblDealer
*Dealer_Name|City|States|Address...
-----------------------------------------
tblEquipment
*Equipment_Type|Equipment_Description
tblSupplier
*Supplier_Name|Contact_Name|Phone|E-mail|Fax|Address...
tblValve
*Valve_Model|Equipment_Type|Supplier_Name|Size|GPM...
tblTape
*Tape_Model|Equipment_Type|Supplier_Name||Inner_Diameter...
tblFilter
*Filter_Model|Equipment_Type|Supplier_Name|Size...
tblController
*Controller_Model|Equipment_Type|Supplier_Name|Description
------------------------------------
tblBid
*BidID|EmployeeID|Legals|Dealer_Name|Season|Year|...|Valve_Model_1|Number_of_Model_1|Valve_Model_2|Number_of_Model_2|Valve_Model_3|Number_of_Model_3...
I guess I have just arbitrarily added the maximum amount of different types of valves/filter etc.. that would be used for each individual bid but I have no idea how to do it.
What I would like to do is to create a form that allows the user to enter the different types of equipment/amounts/type etc... for each bid but I cannot figure out how to do it in a table.
Do I need to do a query for each job instead of using a table?