Crate table with object column : Object Table « Object Oriented Database « Oracle PL / SQL






Crate table with object column

  


SQL>
SQL>
SQL> --User-defined types
SQL>
SQL> CREATE TYPE address_typ AS OBJECT
  2   (StreetNo      NUMBER(10),
  3    StreetName    VARCHAR2(100),
  4    AptNo         NUMBER(5),
  5    City          VARCHAR2(100),
  6    State         VARCHAR2(100),
  7    ZipCode       NUMBER(9),
  8    Country       VARCHAR2(100));
  9  /

Type created.

SQL>
SQL>  CREATE TABLE people
  2    (ID        NUMBER(5),
  3     FirstName VARCHAR2(100),
  4     LastName  VARCHAR2(100),
  5     Address   address_typ);

Table created.

SQL>
SQL>
SQL>  INSERT INTO people
  2   VALUES(10,
  3          'John',
  4          'Smith',
  5          address_typ(123,'Happy Lane', NULL,
  6          'Smalltown','Alaska', 12345,'USA') );

1 row created.

SQL>
SQL>
SQL>
SQL> SELECT * FROM people;

                      ID FIRSTNAME
------------------------ ----------------------------------------------------------------------------------------------------
LASTNAME
----------------------------------------------------------------------------------------------------
ADDRESS(STREETNO, STREETNAME, APTNO, CITY, STATE, ZIPCODE, COUNTRY)
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

                   10.00 John
Smith
ADDRESS_TYP(123.00, 'Happy Lane', NULL, 'Smalltown', 'Alaska', 12345.00, 'USA')


SQL>
SQL> drop table people;

Table dropped.

SQL>
SQL>
           
         
    
  








Related examples in the same category

1.Use a table alias and the name of the object
2.Create table with user defined type as column
3.Create a table with user define varray as column type
4.Create a table with nested user defined type as column
5.Object table: a table of type
6.Use user-defined varray type as column type
7.Nested table
8.Create a table based on user-defined object only
9.Implementation of many to many using object references
10.Implementation of multiple inheritance relationship
11.Implementation of one to many using object references
12.Create table based on single data type
13.Create table with nested types
14.Create type and use it as table column
15.One to one using object references
16.Use user-defined type to combine query logic
17.Create a new type and add it to a table
18.Multilevel aggregation relationships using nested tables