Create Object : Object « Object Oriented Database « Oracle PL / SQL






Create Object

   


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.CREATE OR REPLACE TYPE
2.Create a stored type which is visible to SQL and PL/SQL.
3.reference user-defined data type in another block
4.Student type
5.Point type
6.Use user-defined type as parameter
7.This script demonstrates complex objects
8.Name type
9.Behavior of dependent objects.
10.Build data type with another user type
11.Create the object and collection types
12.Create type and use it in inner query
13.Create types and then use it in pl/sql block
14.Combine user-defined type to create new type
15.PriceType becomes the datatype of the price attribute in the ProductType object type
16.Use self to reference member variable in constructor
17.One to list using object references