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 |
itnagaraj
Yak Posting Veteran
70 Posts |
Posted - 2010-09-01 : 07:20:17
|
Table A Contains Following FieldsID NameTable A Contains Following FieldsID If Both ID's are same,How to update Name in Table A Using JoinsV.NAGARAJAN |
|
senthil_nagore
Master Smack Fu Yak Hacker
1007 Posts |
Posted - 2010-09-01 : 07:22:18
|
Here it isUpdate a set a.name='something' from tablea a inner join tableb b ona.id=b.idSenthil.C------------------------------------------------------[Microsoft][ODBC SQL Server Driver]Operation canceledhttp://senthilnagore.blogspot.com/ |
 |
|
itnagaraj
Yak Posting Veteran
70 Posts |
Posted - 2010-09-01 : 07:31:07
|
OK.Working Fine and Thanksquote: Originally posted by senthil_nagore Here it isUpdate a set a.name='something' from tablea a inner join tableb b ona.id=b.idSenthil.C------------------------------------------------------[Microsoft][ODBC SQL Server Driver]Operation canceledhttp://senthilnagore.blogspot.com/
V.NAGARAJAN |
 |
|
senthil_nagore
Master Smack Fu Yak Hacker
1007 Posts |
Posted - 2010-09-01 : 08:09:28
|
quote: Originally posted by itnagaraj OK.Working Fine and Thanksquote: Originally posted by senthil_nagore Here it isUpdate a set a.name='something' from tablea a inner join tableb b ona.id=b.idSenthil.C------------------------------------------------------[Microsoft][ODBC SQL Server Driver]Operation canceledhttp://senthilnagore.blogspot.com/
V.NAGARAJAN
Welcome Senthil.C------------------------------------------------------[Microsoft][ODBC SQL Server Driver]Operation canceledhttp://senthilnagore.blogspot.com/ |
 |
|
|
|
|