Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
How to Update columns in the cursor?
Message
De
05/06/2002 14:56:56
 
 
Information générale
Forum:
Microsoft SQL Server
Catégorie:
Autre
Divers
Thread ID:
00664741
Message ID:
00665096
Vues:
31
Here is the code for creating Temp. Table.

SET @vch_WhereString = 'SELECT cdt_num_RegistrationId, cdt_num_cdtID, cdt_int_CategoryId, cdt_int_JobId,
RTRIM(cdt_vch_FirstName) + SPACE(1) + RTRIM(cdt_vch_MiddleName) + SPACE(1) + RTRIM(cdt_vch_LastName) AS Name,
cdt_vch_Email, cdt_vch_Password, SPACE(500) AS SKILLS
INTO #tmp_Candidates FROM Candidates ' + @vch_WhereString

EXEC(@vch_WhereString)

SKILLS is the dummy column with SPACE(500). Which I need to update from Candidate's child table called SKILLS. In SKILLS table I have multiple skills for each candidate. Using all child records I need to build string and update back to #tmp_Candidates table for perticular candidate. Is it possible?

Thanks,

Ravi
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform