A
Andrew Black (delete obvious bit)
I have the following query joining two tables (with 2 matching fields). So
far so good :
SELECT tblCatMaps.SeriesId, tblCatMaps.Number
FROM tblCatMaps INNER JOIN Item ON (tblCatMaps.Number = Item.Number) AND
(tblCatMaps.SeriesId = Item.SeriesId);
I want to make this an outer join, so that unmatched records in tblCatMaps
are allow included. I get the dreaded Ambiguous outer join.
How do I get what I want
THanks
Andrew
far so good :
SELECT tblCatMaps.SeriesId, tblCatMaps.Number
FROM tblCatMaps INNER JOIN Item ON (tblCatMaps.Number = Item.Number) AND
(tblCatMaps.SeriesId = Item.SeriesId);
I want to make this an outer join, so that unmatched records in tblCatMaps
are allow included. I get the dreaded Ambiguous outer join.
How do I get what I want
THanks
Andrew