PL SQL Data Types Oracle PLSQL Tutorial

SQL> DECLARE
  2    TYPE hrc_company_rec IS RECORD
  3      (hrc_company_id NUMBER,
  4       product_description VARCHAR2(20),
  5       company_short_name VARCHAR2(30));
  6    v_example_rec1 hrc_company_rec;
  7    v_example_rec2 hrc_company_rec;
  8  BEGIN
  9    v_example_rec1.hrc_company_id :=1001;
 10
 11    v_example_rec1.product_description :='C';
 12
 13    v_example_rec1.company_short_name :='O Inc.';
 14
 15    v_example_rec2 :=v_example_rec1;
 16
 17    dbms_output.put_line(to_number(v_example_rec2.hrc_company_id)||' '||
 18    v_example_rec2.product_description||' '||
 19
 20    v_example_rec2.company_short_name);
 21  END;
 22  /
1001 C O Inc.
PL/SQL procedure successfully completed.
SQL>