Hello folks!
I have two tables tblVessel and tblEngine. At any given point in time a Vessel can have 1 or more Engines. So the table relationship is set-up that tblVessel is on the one-side while tblEngine is on the many-side bound by the pkVesselID . Typical field in the tblVessel is VesselName and typical fields in the tblEngine are EngineMake and EngineModel.
Suppose a vessel named MV "Access World" has 2 engines (representing 2 records of course) Mitsubishi, with model 4DR5, and Mazda, with model RF 200, how do I do this in a query to show a result like this:
MV "Access World" 2 Mitsubishi/Mazda 4DR5/RF 200
The 1st column refers to the VesselName (MV "Access World"), next is the count of engines (2), then the EngineMake (Mitsubishi/Mazda) and last is the EngineModel (4DR5/RF 200).
Eventually, this query will be a RecordSource in a report.
Advance Thanks for your help everyone.
Lyn
I have two tables tblVessel and tblEngine. At any given point in time a Vessel can have 1 or more Engines. So the table relationship is set-up that tblVessel is on the one-side while tblEngine is on the many-side bound by the pkVesselID . Typical field in the tblVessel is VesselName and typical fields in the tblEngine are EngineMake and EngineModel.
Suppose a vessel named MV "Access World" has 2 engines (representing 2 records of course) Mitsubishi, with model 4DR5, and Mazda, with model RF 200, how do I do this in a query to show a result like this:
MV "Access World" 2 Mitsubishi/Mazda 4DR5/RF 200
The 1st column refers to the VesselName (MV "Access World"), next is the count of engines (2), then the EngineMake (Mitsubishi/Mazda) and last is the EngineModel (4DR5/RF 200).
Eventually, this query will be a RecordSource in a report.
Advance Thanks for your help everyone.
Lyn
Last edited: