Devo aggiornare un campo con un valore che viene restituito da un join di 3 tabelle.
Esempio:
select
im.itemid
,im.sku as iSku
,gm.SKU as GSKU
,mm.ManufacturerId as ManuId
,mm.ManufacturerName
,im.mf_item_number
,mm.ManufacturerID
from
item_master im, group_master gm, Manufacturer_Master mm
where
im.mf_item_number like 'STA%'
and im.sku=gm.sku
and gm.ManufacturerID = mm.ManufacturerID
and gm.manufacturerID=34
Voglio aggiornare i mf_item_number
valori di campo della tabella item_master
con qualche altro valore che è unito nella condizione sopra.
Come posso farlo in MS SQL Server?