Hello all, Oracle gives you the ability to update multiple columns in a table by running a multiple column query. How is this done in SQL Server 2000?
Oracle:
UPDATE Table1
SET(Col1, Col2)=(SELECT Col3, Col4 FROM Table2 WHERE ColumnX="xx")
WHERE columnY="yy"
Any Ideas? Thanks. Nate.