One-step INSERTs into an object table : Insert « Object Oriented Database « Oracle PL / SQL






One-step INSERTs into an object table



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> INSERT INTO client SELECT 'Walsh', REF(aa) FROM address_table aa;

0 rows created.

SQL>
SQL> SELECT name, DEREF(address) FROM client;

no rows selected

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.INSERT Values into a Table that Contains Row Objects (TCRO)
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