Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
dass05555
Yak Posting Veteran
55 Posts |
Posted - 2008-03-18 : 06:45:09
|
Dear gurus,how to update two tables,having the same column name .table1 table2------- -------c1 c1------ ------1 12 23 3thanks in advancedass |
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2008-03-18 : 07:24:44
|
Update Table1Set c1=valuesUpdate table2set c1=valuesdo you mean you need to do this by single update? |
 |
|
|
|
|