Hello, I need to translate a script from tsql to plsql, something like:
DECLARE @temp_id int
INSERT INTO Table (col1, col2) VALUES (1, 2)
SET @temp_id = @@identity
but, I am having trouble to find something similar to global variable @@identity
Oracle expert anyone?