Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Returning a parameter from a stored procedure
Message
De
09/03/2010 03:44:19
 
 
À
Tous
Information générale
Forum:
Microsoft SQL Server
Catégorie:
Syntaxe SQL
Titre:
Returning a parameter from a stored procedure
Divers
Thread ID:
01453371
Message ID:
01453371
Vues:
99
Hi

I have a stored procedure that performs a record insert, then returns the new record ID to the calling procedure:

ALTER procedure [dbo].[Candidate_Insert_Blank] (@CreatedByID int, @lnCandidateID int output)

as
begin
set nocount on;
insert into Candidate (CreatedByID)
values (@CreatedByID)
set @lnCandidateID = scope_identity()
end

The primary key in the Candidate table is CandidateID, the question is how would I set the return value to an alternative field, i.e. not the primary key?

Also, I presume it's simple enough to return more than one parameter to the calling procedure?

Regards
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform