I created a query selecting non matching records and made it a delete query & get an error "specify the table conataing the records you want to delete". Help.
Thanks
Thanks
Code:
DELETE Fuel_Assistance.[Account#], Incode_US_Alpha.[Account#] FROM Fuel_Assistance LEFT JOIN Incode_US_Alpha ON Fuel_Assistance.[Account#] = Incode_US_Alpha.[Account#] WHERE (((Incode_US_Alpha.[Account#]) Is Null));
Comment