Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Scope_Identity
Message
De
08/03/2010 13:35:39
 
 
À
Tous
Information générale
Forum:
Microsoft SQL Server
Catégorie:
Syntaxe SQL
Titre:
Scope_Identity
Versions des environnements
SQL Server:
SQL Server 2005
Application:
Desktop
Divers
Thread ID:
01453233
Message ID:
01453233
Vues:
109
Hi

I want to use Scope_Identity to return the newly created record ID in my table. My code, thus far, looks something like:

ALTER procedure [dbo].[Candidate_Insert_Blank]
@CreatedByID int, @CandidateID int output

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

CandidateID is a field within Candidate and it's automatically incremented using Indentify Increment. In reality, I want the stored procedure to return the value of field Candidate.CandidateID.

Regards
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform