Mega Code Archive

 
Categories / Oracle PLSQL / Object Oriented Database
 

Reference type column

SQL> CREATE or replace TYPE BookType;   2  / Type created. SQL> PROMPT Now we can create ProductType successfully Now we can create ProductType successfully SQL> SQL> CREATE OR REPLACE TYPE ProductType AS OBJECT (   2     item_id        NUMBER(10),   3     num_in_stock   NUMBER(10),   4     reorder_status VARCHAR2(20),   5     price       REF   BookType);   6  / Type created.