 |
Update from multiple tables - Experts Exchange - The network for technology professionals.
maybe i am missing something but it seems to me quite easy to do what u want updating multiple columns: SQL Server: Update table Set t.column1 = a.column1, t.column2 = b.column2 From table t, table_a a, table_b b Where t.table_id = a.table_id and a ...
www.experts-exchange.com |
 |