Difference between revisions of "OE.ORDER ITEM TYP (type)"

From dbscript Online Help
Jump to: navigation, search
(New page: == wikibot == {| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" |- | '''type | OE.ORDER_ITEM_TYP |- |} <pre> CREATE TYPE OE.ORDER_ITEM_TYP FROM NOT NULL </p...)
 
 
(2 intermediate revisions by the same user not shown)
Line 2: Line 2:
  
 
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse"
 
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse"
|-
+
|- valign="top"
| '''type
+
| '''Type
 
| OE.ORDER_ITEM_TYP
 
| OE.ORDER_ITEM_TYP
|-
 
 
|}
 
|}
  
 +
=== Source ===
 
<pre>
 
<pre>
CREATE TYPE OE.ORDER_ITEM_TYP FROM NOT NULL
+
CREATE OR REPLACE TYPE order_item_typ
 +
                                        AS OBJECT
 +
    ( order_id          NUMBER(12)
 +
    , line_item_id      NUMBER(3)
 +
    , unit_price        NUMBER(8,2)
 +
    , quantity          NUMBER(8)
 +
    , product_ref REF  product_information_typ
 +
    ) ;
 
</pre>
 
</pre>

Latest revision as of 07:15, 24 June 2010

wikibot[edit]

Type OE.ORDER_ITEM_TYP

Source[edit]

CREATE OR REPLACE TYPE order_item_typ
                                         AS OBJECT
    ( order_id           NUMBER(12)
    , line_item_id       NUMBER(3)
    , unit_price         NUMBER(8,2)
    , quantity           NUMBER(8)
    , product_ref  REF   product_information_typ
    ) ;