Populating a Record with FETCH INTO : Fetch « Cursor « Oracle PL/SQL Tutorial
SQL> SQL> SQL> create table product( 2 product_id number(4) not null, 3 product_description varchar2(20) not null 4 ); Table created. SQL> SQL> insert into product values (1,'Java'); 1 row created. SQL> insert into product values (2,'Oracle'); 1 row creat...