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 |
|
KingCarlos
Yak Posting Veteran
74 Posts |
Posted - 2010-01-12 : 23:09:23
|
| I have the following set of dataRow # Phone_number1 111112 222223 33333How to I update the phone number to have a + in front of each record in one hit. |
|
|
senthil_nagore
Master Smack Fu Yak Hacker
1007 Posts |
Posted - 2010-01-12 : 23:38:35
|
| update table_name set Phone_number='+'+Phone_numberSenthil.C------------------------------------------------------[Microsoft][ODBC SQL Server Driver]Operation canceledhttp://senthilnagore.blogspot.com/ |
 |
|
|
tkizer
Almighty SQL Goddess
38200 Posts |
|
|
KingCarlos
Yak Posting Veteran
74 Posts |
Posted - 2010-01-12 : 23:43:55
|
| Thanks Guys ! that worked, wow that was simple, |
 |
|
|
|
|
|