Hi all,
I'm trying to make an updatable query for a partsorder form, but im having trouble.
I think its due to having to many inner joins, but is there a way to make this work:
I'm trying to make an updatable query for a partsorder form, but im having trouble.
I think its due to having to many inner joins, but is there a way to make this work:
Code:
SELECT DISTINCTROW WoJobTbl.JobItemNo, PartsOrder.OrderPriority
FROM ((EstimateTbl INNER JOIN WoJobTbl ON EstimateTbl.ProjectID = WoJobTbl.ProjectID)
INNER JOIN EstimateJobTbl ON EstimateTbl.EstimateId = EstimateJobTbl.EstimateId)
INNER JOIN (EstimatePartTbl LEFT JOIN PartsOrder ON EstimatePartTbl.EstimatePartId = PartsOrder.EstimatePartId)
ON EstimateJobTbl.JobId = EstimatePartTbl.JobId;
Last edited: