INSERT Values into a Table that Contains Row Objects (TCRO) : Insert « Object Oriented Database « Oracle PL / SQL






INSERT Values into a Table that Contains Row Objects (TCRO)



SQL> -- INSERT Values into a Table that Contains Row Objects (TCRO)
SQL>
SQL>
SQL> CREATE OR REPLACE TYPE addressType as OBJECT(
  2        street VARCHAR2(20),
  3        city VARCHAR2(20),
  4        state CHAR(2),
  5        zip CHAR(5));
  6  /

Type created.

SQL>
SQL> CREATE TABLE address_table OF addressType;

Table created.

SQL>
SQL> CREATE TABLE client (name VARCHAR2(20),
  2    address REF addressType scope is address_table);

Table created.

SQL>
SQL>
SQL>
SQL> INSERT INTO client VALUES ('Jones',null);

1 row created.

SQL>
SQL>
SQL> SELECT * FROM client;

NAME      ADDRESS
--------- --------------------------------------------------
Jones

SQL>
SQL>
SQL>
SQL> drop table client;

Table dropped.

SQL>
SQL> drop table address_table;

Table dropped.

SQL>
SQL>
           
       








Related examples in the same category

1.INSERT Values into a Table with the Column Type in It
2.One-step INSERTs into an object table
3.Insert data into an object table
4.Insert value with type variable
5.Insert value to an objec table as normal table
6.Insert inherited object
7.Use table function in insert statement for a user-defined type column
8.Object table insert
9.Insert value to a specific column for an object table with insert...select statement
10.Insert value to one column in an object table