We have the following situation.....
Update TableA Set
Field1 = (select Anotherfield1 from tableB where ID = 1)
Field2 = (select Anotherfield2 from tableB where ID = 1)
Field3 = (select Anotherfield3 from tableB where ID = 1)
(etc etc..... fone for approx 14 fields)
We cannot execute a stored procedure and the query has to handle this in one go........
Is there anybody out there who knows a better way ?????