Each row of this table specifies the tax amount of
a particular TaxCategory for all the OrderItems with the same
shipping address as the SubOrder.
Column Descriptions:
Name | Type | Description |
SUBORDER_ID | BIGINT NOT NULL | The SubOrder. |
TAXCGRY_ID | INTEGER NOT NULL | The TaxCategory. |
TAXAMOUNT | DECIMAL (20,5) NOT NULL | The tax amount in the Currency of the SubOrder
(see SUBORDERS.CURRENCY for details). |
OPTCOUNTER | SMALLINT NOT NULL DEFAULT 0 | The optimistic concurrency control counter for
the table. Every time there is an update to the table, the counter
is incremented. |
Indexes:
Name | Column Names | Type |
<SYSTEM-GENERATED> | SUBORDER_ID+TAXCGRY_ID | Primary Key |
I0000802 | TAXCGRY_ID | Non-Unique Index |
Constrained By Parent Tables:
Constraint | Columns | Parent Table | Parent Columns | Type |
F_814 | SUBORDER_ID | SUBORDERS | SUBORDER_ID | Cascade |
F_815 | TAXCGRY_ID | TAXCGRY | TAXCGRY_ID | Cascade |