Oracle DML RETURNING INTO Clause
# Setup
The following test table is used to demonstrate RETURNING INTO clause.
123456789101112131415DROP TABLE t1;DROP SEQUENCE t1_seq;CREATE TABLE t1 ( id NUMBER(10), description VARCHAR2(50), CONSTRAINT t1_pk PRIMARY KEY (id));CREATE SEQUENCE t1_seq;INSERT INTO t1 VALUES (t1_seq.nextval,...
more...









