I need to update this table in SQL Server with data from its \'parent\' table, see below:
Table: sale
id (int) udid
The following statement with FROM keyword is used to update multiple rows with a join
UPDATE users set users.DivisionId=divisions.DivisionId from divisions join users on divisions.Name=users.Division