Migrating from SQL Server to Oracle. SQL Server Stor Proc
as follows...
Insert Into Table1
(field1, field2,...)
Values (a, b, ...)
Select @@Identity as "Identity"
@@Identity is a global variable which returns the
identity (or row id) of the last inserted record.
What is the equivalent way in Oracle to do the same
thing? Thanks for any replies.
as follows...
Insert Into Table1
(field1, field2,...)
Values (a, b, ...)
Select @@Identity as "Identity"
@@Identity is a global variable which returns the
identity (or row id) of the last inserted record.
What is the equivalent way in Oracle to do the same
thing? Thanks for any replies.