M
Me!
I have the following query:
SELECT dbo.qry_UV_CARS_PlateX_ShouldBeValued.Yl_iD
FROM dbo.qry_UV_CARS_PlateX_Valued RIGHT OUTER JOIN
dbo.qry_UV_CARS_PlateX_ShouldBeValued ON
dbo.qry_UV_CARS_PlateX_Valued.Yl_iD =
dbo.qry_UV_CARS_PlateX_ShouldBeValued.Yl_iD
WHERE (dbo.qry_UV_CARS_PlateX_Valued.Yl_iD IS NULL)
And I have another secondary table containing the same field as Yl_iD.
What I want to do is have my main query exclude all the Yl_iD values that
are in my secondary table.
What JOIN and criteria will do this?
Many thanks.....Jason
SELECT dbo.qry_UV_CARS_PlateX_ShouldBeValued.Yl_iD
FROM dbo.qry_UV_CARS_PlateX_Valued RIGHT OUTER JOIN
dbo.qry_UV_CARS_PlateX_ShouldBeValued ON
dbo.qry_UV_CARS_PlateX_Valued.Yl_iD =
dbo.qry_UV_CARS_PlateX_ShouldBeValued.Yl_iD
WHERE (dbo.qry_UV_CARS_PlateX_Valued.Yl_iD IS NULL)
And I have another secondary table containing the same field as Yl_iD.
What I want to do is have my main query exclude all the Yl_iD values that
are in my secondary table.
What JOIN and criteria will do this?
Many thanks.....Jason