J
Jay
I have two table linked on the field 'Range' and the following query
returns 'Field' values in one table that aren't in the other.
SELECT DISTINCT tblderivative_11thNov07.Range
FROM tblderivative_11thNov07 LEFT JOIN tblSector ON
tblderivative_11thNov07.Range = tblSector.Range
WHERE (((tblSector.Range) Is Null));
Is it possible to amend the query to *also* do the same thing but the
other way round i.e. values in tblSector but not in tblDerivative_11thNov07?
But also somehow to include a field which indicates which table is
missing which value?
Any help greatly appreciated....thanks, Jason
returns 'Field' values in one table that aren't in the other.
SELECT DISTINCT tblderivative_11thNov07.Range
FROM tblderivative_11thNov07 LEFT JOIN tblSector ON
tblderivative_11thNov07.Range = tblSector.Range
WHERE (((tblSector.Range) Is Null));
Is it possible to amend the query to *also* do the same thing but the
other way round i.e. values in tblSector but not in tblDerivative_11thNov07?
But also somehow to include a field which indicates which table is
missing which value?
Any help greatly appreciated....thanks, Jason