Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Concatenate Column
Message
From
22/02/2003 11:04:05
Mike Yearwood
Toronto, Ontario, Canada
 
General information
Forum:
Visual FoxPro
Category:
Databases,Tables, Views, Indexing and SQL syntax
Miscellaneous
Thread ID:
00756491
Message ID:
00756568
Views:
12
Thanks for that.

Can we use this in-line to make a derived table?

select somefield from sometable inner join (DECLARE @StrConcat varchar(8000)
SET @StrConcat = ''
SELECT somefield,@StrConcat = @StrConcat + ', ' + title_id
FROM sometable
GROUP BY somefield) dt_concat on sometable.somefield = dt_concat.somefield

Or should I create a procedure and call it as a derived field?

>>Hi all
>>
>>Is there any way with SQL Server and SPT to concatenate a set of entries into a string much as SUM() sums a set of entries into a total?
>
>Mike,
>There's set based solution if you want to concatenate column from all records that satisfy query conditions.
TEXT TO lcSql NOSHOW
>DECLARE @StrConcat varchar(8000)
>SET @StrConcat = ''
>SELECT  @StrConcat =  @StrConcat + ', ' + title_id
>	FROM pubs..sales
>	WHERE stor_id LIKE '7%'
>SELECT SUBSTRING(@StrConcat,3,8000)
>ENDTEXT
>? SqlExec(lnConn, lcSql)
>
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform