Difference between revisions of "IX.ORDER EVENT TYP (type)"

From dbscript Online Help
Jump to: navigation, search
(New page: == wikibot == {| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" |- | '''type | IX.ORDER_EVENT_TYP |- |} <pre> CREATE TYPE [IX].ORDER_EVENT_TYP FROM NOT NULL...)
 
 
(3 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
 
| IX.ORDER_EVENT_TYP
 
| IX.ORDER_EVENT_TYP
|-
 
 
|}
 
|}
  
 +
=== Source ===
 
<pre>
 
<pre>
CREATE TYPE [IX].ORDER_EVENT_TYP FROM  NOT NULL
+
CREATE OR REPLACE TYPE "ORDER_EVENT_TYP"                                                                          AS OBJECT (
 +
order_id NUMBER(12),
 +
product_id  NUMBER(6),
 +
customer_id NUMBER(6),
 +
cust_first_name VARCHAR2(20),
 +
cust_last_name VARCHAR2(20),
 +
order_status  NUMBER(2),
 +
delivery_date DATE
 +
);
 
</pre>
 
</pre>

Latest revision as of 11:34, 27 August 2011

wikibot[edit]

Type IX.ORDER_EVENT_TYP

Source[edit]

CREATE OR REPLACE TYPE "ORDER_EVENT_TYP"                                                                          AS OBJECT (
	order_id 	NUMBER(12),
	product_id  	NUMBER(6),
	customer_id	NUMBER(6),
	cust_first_name	VARCHAR2(20),
	cust_last_name	VARCHAR2(20),
	order_status  	NUMBER(2),
	delivery_date	DATE
);