Hi
The following query works okay in SQL Query Analyzer but when I try to paste it into the SQL view of an Access query I get a "Join not supported" error. I dont think it like the left outer join. Actually I have aseries of left outers in the full query but I've abridged it.
SELECT
a.Local_Id as Agreement_No
, a.Vicinity as Street_No
, b.Descript as Road
, c.Descript as Locality
, d.Detail_text as Owners_Name
from ((asset a
inner join area_location b
on a.Location = b.Area_Code)
inner join locality c
on a.Locality = c.Locality)
left outer join asset_details d
on a.asset_id = d.asset_id and d.detail_code = 'OWNN'
where a.Local_Id = '01472'
Thanks for your help
Cheers
Luigi
The following query works okay in SQL Query Analyzer but when I try to paste it into the SQL view of an Access query I get a "Join not supported" error. I dont think it like the left outer join. Actually I have aseries of left outers in the full query but I've abridged it.
SELECT
a.Local_Id as Agreement_No
, a.Vicinity as Street_No
, b.Descript as Road
, c.Descript as Locality
, d.Detail_text as Owners_Name
from ((asset a
inner join area_location b
on a.Location = b.Area_Code)
inner join locality c
on a.Locality = c.Locality)
left outer join asset_details d
on a.asset_id = d.asset_id and d.detail_code = 'OWNN'
where a.Local_Id = '01472'
Thanks for your help
Cheers
Luigi