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 |
|
MIB
Starting Member
4 Posts |
Posted - 2002-09-24 : 23:21:22
|
| Hi If I have a Table1 with Field1 as belowField1ABCI want to write a SQL to display ABC. (join all records in Field1 together)Thank You |
|
|
MIB
Starting Member
4 Posts |
Posted - 2002-09-25 : 00:55:20
|
| I done it by using cursor...any solution without use cursor?thanks |
 |
|
|
marileng
Starting Member
28 Posts |
Posted - 2002-09-25 : 02:21:15
|
| Declare @Field1 Varchar(200)Set @Field1= ''Update Table1Set @Field1 = @field1 + field1 print @Field1 |
 |
|
|
Page47
Master Smack Fu Yak Hacker
2878 Posts |
|
|
|
|
|