wird folgendes auch unterstützt?
SQL-Code:
UPDATE a
SET a.val = b.Val
FROM a INNER JOIN b ON a.id = b.id
Damit wäre es übersichtlicher ... und wahrscheinlich auch schneller
SQL-Code:
UPDATE artikelpreise
SET bruttopreis = b.bruttoneu,
nettopreis = (b.bruttoneu / (100 + b.mwstsatz) * 100)
FROM artikelpreise
INNER JOIN artikelpreiseaenderung b
ON artikelpreise.artikelpreis_id=b.artikelpreis_id