Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Concatenate Column
Message
 
 
À
21/02/2003 20:33:04
Mike Yearwood
Toronto, Ontario, Canada
Information générale
Forum:
Visual FoxPro
Catégorie:
Base de données, Tables, Vues, Index et syntaxe SQL
Divers
Thread ID:
00756491
Message ID:
00756501
Vues:
20
>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)
--sb--
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform