INSERT Values into a Table with the Column Type in It : Insert « Object Oriented Database « Oracle PL / SQL






INSERT Values into a Table with the Column Type in It


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> CREATE TABLE emp (empno   NUMBER(3),
  2                    name    VARCHAR2(20),
  3                    address addressType);

Table created.

SQL>
SQL>
SQL> INSERT INTO emp VALUES (101, 'Adam', addressType('1 A St.','Mobile','AL','36608'));

1 row created.

SQL>
SQL> SELECT * FROM emp;

     EMPNO NAME
---------- --------------------
ADDRESS(STREET, CITY, STATE, ZIP)
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
       101 Adam
addressType('1 A St.', 'Mobile', 'AL', '36608')


SQL>
SQL>
SQL> drop table emp;

Table dropped.

SQL>
SQL>
SQL>
           
       








Related examples in the same category

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