DERIVED_ATTRIBUTE_BASE
Description
This table stores the base information for derived attributes. It includes details such as the name of the attribute, whether it is retained, its type, expression, and references to other related tables.
Columns
| Column Name | Data Type | Description |
| ID | bigint | The unique identifier for each derived attribute base. |
| NAME | varchar | The name of the attribute. |
| RETAINED | bit | A flag indicating whether the attribute is retained. |
| TYPE | varchar | The type of the attribute. |
| EXPRESSION | varchar | The expression for the attribute. |
| FUNCTION DERIVED_ATTRIBUTE 0 | bigint | The ID of the function reference associated with the attribute. |
| SCORER_DERIVED_ATTRIBUTE_BAS_0 | bigint | The ID of the scorer reference associated with the attribute. |
Primary Key
- ID
Foreign Key Relationships
- FUNCTION DERIVED_ATTRIBUTE 0 references ID column in FUNCTION_REFERENCE table.
- SCORER_DERIVED_ATTRIBUTE_BAS_0 references ID column in SCORER_REFERENCE table.