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 |
dharmsah
Starting Member
1 Post |
Posted - 2011-02-01 : 03:37:22
|
hi Could any one help me how to get rid of my problemMy problem is:table name: countryIDaccid names——————————–101 india102 india103 india201 usa202 usa————————————————I need like this names accid————————————————–india 101,102,103usa 201,202—————————————————please how to solve this problem.RegardsDharmendra Kumar |
|
TheRedman
Starting Member
1 Post |
Posted - 2011-02-01 : 18:04:46
|
Hi DharmendraTryout this linkhttp://www.simple-talk.com/sql/t-sql-programming/concatenating-row-values-in-transact-sql/ |
|
|
yadhu_cse
Constraint Violating Yak Guru
252 Posts |
Posted - 2011-02-02 : 00:27:51
|
Try thisselect field1 + field2 from table nameorselect field1 || field2 from table name |
|
|
|
|
|