D
DJJ
I can't get this delete query to work. I am running Access 2003 connected
to SQLServer by ODBC. Is there some limitations on delete queries with
Where clauses and joins? I can't get any to work.
DELETE PhysInv.*
FROM PhysInv LEFT JOIN Inventory ON PhysInv.KeyCounter =
Inventory.KeyCounter
WHERE (((Inventory.KeyCounter) Is Null));
DJJ
to SQLServer by ODBC. Is there some limitations on delete queries with
Where clauses and joins? I can't get any to work.
DELETE PhysInv.*
FROM PhysInv LEFT JOIN Inventory ON PhysInv.KeyCounter =
Inventory.KeyCounter
WHERE (((Inventory.KeyCounter) Is Null));
DJJ