I'm trying to get a query to update values in a table to Null if they do not match values in another table. I usually work in the design view, and I'm not that experienced with SLQ, but I can only seem to get those that do match to update to Null.
UPDATE Table2 INNER JOIN Table1 ON [Table2].Groups=Table1.Group SET Table1.[Group] = Null;
This is updating those that match to null, not those that do not match.
Any help is appreciated.
Thanks!