Hi guys,
Why wont this query work??
DELETE Work.MemID
FROM Work2 INNER JOIN [Work] ON Work2.EMAIL = Work.EMAIL
WHERE (((Work.MemID)<>[Work2].[MemID]));
Two tables as you can see..
And all i want to do is delete records in one table which dont have the same MemID in another table..
Why wont this query work??
DELETE Work.MemID
FROM Work2 INNER JOIN [Work] ON Work2.EMAIL = Work.EMAIL
WHERE (((Work.MemID)<>[Work2].[MemID]));
Two tables as you can see..
And all i want to do is delete records in one table which dont have the same MemID in another table..