I need to update this table in SQL Server with data from its \'parent\' table, see below:
Table: sale
id (int) udid
And in MS ACCESS:
UPDATE ud INNER JOIN sale ON ud.id = sale.udid SET ud.assid = sale.assid;