This is the UPDATE Query Im trying to execute on the SQL Server, but it errors out on the INNER Join.
UPDATE Material_Location INNER JOIN Material ON Material_Location.Material = Material.Material SET Material_Location.On_Hand_Qty = 0
WHERE (((Material.Class)='Assy'));
UPDATE Material_Location INNER JOIN Material ON Material_Location.Material = Material.Material SET Material_Location.On_Hand_Qty = 0
WHERE (((Material.Class)='Assy'));