Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Accumulating in a local variable
Message
Information générale
Forum:
Microsoft SQL Server
Catégorie:
Stored procedures, Triggers, UDFs
Divers
Thread ID:
00662107
Message ID:
00662138
Vues:
22
Or
SET @txt = @txt + ISNULL(@txtaux, '')
BTW, SET CONCAT_NULL_YIELDS_NULL controls how null value is treated in concatenation.

>Thank you Michael and Sergey:
>
>The problem was that exist an NULL value in field 'texto' and the solution was include an IF asking for a NULL value.
>Apparently command '+' doesn't concatenate when it finds a value NULL and it loses (?) the current content.
>
>
>	WHILE @@FETCH_STATUS = 0
>	BEGIN
>		FETCH NEXT FROM cur_text INTO @txtaux
>		IF @txtaux IS NOT NULL
>			SET @txt = @txt + @txtaux
>	END
>
>	PRINT 'Complete string: ' + @txt
>
>
>>Sergey pointed out one problem - you've got the FETCH in the wrong place within
--sb--
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform