vote up 0 vote down star

i have a primary key set up to auto increment.

i am doing multiple queries and i need to retrieve that primary key to use as a foreign key in another table (is identity = true)

is there any elegant way to get back the primary key when i do an insert query. right now i am requerying and getting the highest value in that column which seems really hacky.

any suggestions?

flag

5 Answers

vote up 6 vote down check
insert into YourTable values (...)

get the new PK with scope_identity()

select scope_identity()
link|flag
1  
+1 yup, using scope_identity() is the most reliable and efficient way to go! – marc_s Sep 1 at 4:49
vote up 1 vote down

You should use scope_identity(). And I recommend to wrap insert statement and scope_identity() into transaction.

link|flag
vote up 7 vote down

If you are using SQL Server 2005 or later, you can use the OUTPUT clause.

create table T(
  pk int identity primary key,
  dat varchar(20)
);
go

insert into T
output inserted.pk
values ('new item');
go

drop table T;

The output can be directed to a table as well as to the client. For example:

create table T(
  pk int identity primary key,
  dat varchar(20)
);

create table U(
  i int identity(1001,1) primary key,
  T_pk int not null,
  d datetime
);
go


insert into T
output inserted.pk, getdate()
into U(T_pk,d)
values ('new item'), ('newer item');
go

select * from T;
select * from U;
go

drop table T, U;

Beginning with SQL Server 2008, you can use "composable DML" for more possibilities.

link|flag
+1 another very good approach, which also works if the PK isn't an identity - good callè – marc_s Sep 1 at 4:50
It's also a single statement rather than 2 which could be useful – gbn Sep 1 at 5:41
+1: and learned something new here – van Sep 1 at 7:39
Even better if you have multiple records in an insert you can get all the ids as well as the natural key. – HLGEM Sep 1 at 13:01
vote up 2 vote down

SCOPE_IDENTITY() is probably what you want. It returns the ID of the last record inserted by the same code context in which it executes.

IDENT_CURRENT('tablename') is subject to concurrency issues. That is, there's no guarantee that another record won't be inserted between the INSERT and the call to IDENT_CURRENT.

I must confess, I'm not sure to what source of amazement the VillageIdiot's outburst refers, but I myself am quite astonished that this question does not appear to be a duplicate at all.

link|flag
vote up 1 vote down

holy crap!!!

just call SCOPE_IDENTITY() function:

insert into your_talble(col1,col2) values('blah','more blah')
select scope_identity()

because selecting highest value will return error if any other statement make an insert. the function scope_identity() returns the identity created in current context (that is by your statement)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.