Das ist die Beschreibung der Funktionen, aber hier ein Beispiel.
Die @@identity ist das was du nutzen kannst.
Code:
insert into table1 (x) values (1)
insert into table1 (x) values (1)
select @@identity;
2
select SCOPE_IDENTITY()
2
select @@identity;
1
select SCOPE_IDENTITY()
1
select IDENT_CURRENT('Table1');
2
select IDENT_CURRENT('Table1');
2
linke Spalte Verbindung 1
rechte Spalte Verbindung 2
die table1 sieht so aus:
SQL-Code:
CREATE TABLE [Table1] (
[id] [int] IDENTITY (1, 1) NOT NULL ,
[x] [int] NOT NULL
) ON [PRIMARY]
GO