AKTUALIZACJA 1
na podstawie Twój komentarz , markup
powinien być częścią sprzężenia. Oto właściwy:
UPDATE oman.ProductMaster_T
INNER JOIN main.ProductMaster_T
ON main.ProductMaster_T.ProductID = oman.ProductMaster_T.ProductID
SET oman.ProductMaster_T.Markup = main.ProductMaster_T.Markup
możesz nawet dodać ALIAS
uprościć stwierdzenie,
UPDATE oman.ProductMaster_T o
INNER JOIN main.ProductMaster_T m
ON m.ProductID = o.ProductID
SET o.Markup = m.Markup