B
BillT
Hi:
Here's the scenario: (first database)
I'm trying to create a database for Forklifts and how
their batteries are used. (charged)
1. The program should prompt the user to input the dead
battery's number, the truck# it is coming from and how
many hours the battery was used on the truck.
2. After inputting the dead battery#, the program should
display what fresh battery is available for that
particular truck.
There are two different types of trucks that use only
specific batteries. eg. Reach trucks uses only Reach
batteries and Clamp trucks only use Clamp batteries.
My problem: There are two batteries for each truck. I am
unable to link my battery table to the truck table because
there are twice as many records in the battery table .
Truck#'s are unique: 14, 15, 16 etc.
Battery#'s are also unique: 14a, 14b, 15a, 15b etc.
Charger#'s are also unique: 14,15,16 etc.
My tables:
tblTruckModel linked to tblBatteries
one to many Reach, Clamp identifies each different battery.
tblLiftTruck unlinked
Truck#
tlbBatteries unlinked
tblEmployees unlinked
TIA
BillT
Here's the scenario: (first database)
I'm trying to create a database for Forklifts and how
their batteries are used. (charged)
1. The program should prompt the user to input the dead
battery's number, the truck# it is coming from and how
many hours the battery was used on the truck.
2. After inputting the dead battery#, the program should
display what fresh battery is available for that
particular truck.
There are two different types of trucks that use only
specific batteries. eg. Reach trucks uses only Reach
batteries and Clamp trucks only use Clamp batteries.
My problem: There are two batteries for each truck. I am
unable to link my battery table to the truck table because
there are twice as many records in the battery table .
Truck#'s are unique: 14, 15, 16 etc.
Battery#'s are also unique: 14a, 14b, 15a, 15b etc.
Charger#'s are also unique: 14,15,16 etc.
My tables:
tblTruckModel linked to tblBatteries
one to many Reach, Clamp identifies each different battery.
tblLiftTruck unlinked
Truck#
tlbBatteries unlinked
tblEmployees unlinked
TIA
BillT