PROFILE_CONDITION_PREDICATE

Description

Table for storing predicates for profile conditions.

Columns

Column Name Data Type Description
ID bigint(20)

NOT NULL

Primary key for the table.
LHS longtext

DEFAULT NULL

Left-hand side value for the predicate.
LIVE_SEGMENT_CONDITION_VALUE_0 bigint(20)

DEFAULT NULL

Foreign key referencing the ID column in the LIVE_SEGMENT_CONDITION_VALUE table.
PROFILE_CONDITION_VALUE_WITH_1 bigint(20)

DEFAULT NULL

Foreign key referencing the ID column in the PROFILE_CONDITION_VALUE_WITH table.
RAW_PROFILE_CONDITION_VALUE 0 bigint(20)

DEFAULT NULL

Foreign key referencing the ID column in the CONDITION table.

Foreign Key Relationships

  • FOREIGN KEY ( LIVE_SEGMENT_CONDITION_VALUE_0 ) REFERENCES LIVE_SEGMENT_CONDITION_VALUE ( ID ): Establishes a foreign key relationship with the LIVE_SEGMENT_CONDITION_VALUE table.
  • FOREIGN KEY ( RAW_PROFILE_CONDITION_VALUE 0 ) REFERENCES CONDITION_ ( ID ): Establishes a foreign key relationship with the CONDITION table.