This table contains search terms that a customer
searches for, either as their inputted search term, or the
substituted search term associations.
Column Descriptions:
Name | Type | Description |
SRCHTERMASSOC_ID | BIGINT NOT NULL | Foreign key to SRCHTERMASSOC table |
TYPE | INTEGER NOT NULL | 1: Input term 2: Associated term |
TERM | VARCHAR (254) NOT NULL | An input search term that a customer would search
with, or an associated term that should be used along with or
instead of the input term. |
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> | SRCHTERMASSOC_ID+TYPE+TERM | Primary Key |
I0001400 | TERM | Non-Unique Index |
I0001401 | TYPE | Non-Unique Index |
I0001402 | SRCHTERMASSOC_ID | Non-Unique Index |
Constrained By Parent Tables:
Constraint | Columns | Parent Table | Parent Columns | Type |
F_3688 | SRCHTERMASSOC_ID | SRCHTERMASSOC | SRCHTERMASSOC_ID | Cascade |