R
Rick Dunmire
Hello everyone,
I have a little snag with a query join.
I need to replace an INNER JOIN with a LEFT JOIN but I get an error " Join
expression not supported"
This works "LEFT JOIN Inspection" below.
FROM (Customer INNER JOIN Vehicle ON Customer.pk_customer =
Vehicle.fk_customer) LEFT JOIN Inspection ON Vehicle.pk_vehicle =
Inspection.fk_vehicle
This doesn't "LEFT JOIN Inspection" below.
FROM QueryParms, (Customer INNER JOIN Vehicle ON Customer.pk_customer =
Vehicle.fk_customer) INNER JOIN (Company LEFT JOIN Inspection ON
Company.pk_company = Inspection.fk_company) ON Vehicle.pk_vehicle =
Inspection.fk_vehicle
Can this be fixed somehow?
Thanks
Rick Dunmire
I have a little snag with a query join.
I need to replace an INNER JOIN with a LEFT JOIN but I get an error " Join
expression not supported"
This works "LEFT JOIN Inspection" below.
FROM (Customer INNER JOIN Vehicle ON Customer.pk_customer =
Vehicle.fk_customer) LEFT JOIN Inspection ON Vehicle.pk_vehicle =
Inspection.fk_vehicle
This doesn't "LEFT JOIN Inspection" below.
FROM QueryParms, (Customer INNER JOIN Vehicle ON Customer.pk_customer =
Vehicle.fk_customer) INNER JOIN (Company LEFT JOIN Inspection ON
Company.pk_company = Inspection.fk_company) ON Vehicle.pk_vehicle =
Inspection.fk_vehicle
Can this be fixed somehow?
Thanks
Rick Dunmire