AGGREGATED_ATTRIBUTE
Description
This table stores information about aggregated attributes.
Columns
| Column Name | Data Type | Description |
| ID | bigint(20) | Primary key, unique identifier for each aggregated attribute. |
| NAME | varchar(255) | The name of the aggregated attribute. |
| RETAINED | bit(1) | Flag indicating whether the attribute is retained. |
| TYPE | varchar(255) | The type of the attribute. |
| AGGREGATE | varchar(255) | The aggregate function for the attribute. |
| PERIOD | varchar(255) | The period for the attribute. |
| WINDOW_LENGTH | int(11) | The window length for the attribute. |
| WINDOW_LENGTH_UNIT | varchar(255) | The unit of time for the window length. |
| AGGREGATED_ATTRIBUTES_ENRICH_0 | bigint(20) | Foreign key referencing the ENRICHMENT_OPERATION table. |
| AGGREGATED_ATTRIBUTES_HJORDER | int(11) | The order of the aggregated attribute. |
Foreign Key Relationships
- AGGREGATED_ATTRIBUTES_ENRICH_0 references ENRICHMENT_OPERATION(ID)