Each row of this table contains subtotals of amounts for all the OrderItems of an Order with the same shipping address.
Column Description(s):
Column Name | Column Type | Description |
ORDERS_ID |
BIGINT NOT NULL |
The Order. |
SUBORDER_ID |
BIGINT NOT NULL |
Generated unique key. |
ADDRESS_ID |
BIGINT |
The shipping address. |
COUNTRY |
CHAR(30) |
Customizable. |
TOTALPRODUCT |
DECIMAL (20,5) DEFAULT 0 |
The total of ORDERITEMS.TOTALPRODUCT for all the OrderItems with the same shipping address as the SubOrder, in the Currency specified by CURRENCY. |
TOTALTAX |
DECIMAL (20,5) DEFAULT 0 |
The total of ORDERITEMS.TAXAMOUNT for all the OrderItems with the same shipping address as the SubOrder, in the Currency specified by CURRENCY. |
TOTALSHIPPING |
DECIMAL (20,5) DEFAULT 0 |
The total of ORDERITEMS.SHIPCHARGE for all the OrderItems with the same shipping address as the SubOrder, in the Currency specified by CURRENCY. |
TOTALTAXSHIPPING |
DECIMAL (20,5) DEFAULT 0 |
The total of ORDERITEMS.SHIPTAXAMOUNT for all the OrderItems with the same shipping address as the SubOrder, in the Currency specified by CURRENCY. |
CURRENCY |
CHAR(10) |
The currency for monetary amounts in the SubOrder. This is a currency code as per ISO 4217 standards. |
FIELD1 |
INTEGER |
Customizable. |
FIELD2 |
DECIMAL (20,5) |
Customizable. |
FIELD3 |
VARCHAR(254) |
Customizable. |
TOTALADJUSTMENT |
DECIMAL (20,5) DEFAULT 0 |
The total of ORDERITEMS.TOTALADJUSTMENT for all the OrderItems with the same shipping address as the SubOrder, in the Currency specified by CURRENCY. |
OPTCOUNTER |
SMALLINT |
Reserved for IBM internal use. |
Index(es):
Index Name | Indexed Column Names | Index Type |
SQL050212031317120 |
SUBORDER_ID |
Primary Key |
I0000242 |
TOTALPRODUCT |
Non-Unique Index |
I0000243 |
ORDERS_ID |
Non-Unique Index |
I0000801 |
ADDRESS_ID |
Non-Unique Index |
Constraint(s):
Constraint Name | Column Name(s) | Foreign Table Name | Foreign Column Name(s) | Constraint Type |
F_812 |
ADDRESS_ID |
ADDRESS |
ADDRESS_ID |
Cascade |
F_813 |
ORDERS_ID |
ORDERS |
ORDERS_ID |
Cascade |
Referenced By:
Constraint Name | Referenced Column Name | Foreign Table Name | Foreign Column Name(s) | Constraint Type |
F_811 |
SUBORDER_ID |
SUBORDADJ |
SUBORDER_ID |
Cascade |
F_814 |
SUBORDER_ID |
SUBORDTAX |
SUBORDER_ID |
Cascade |
Related reference
(C) Copyright IBM Corporation 1996, 2005. All Rights Reserved.