data_type
ToIntOperator ¶
Bases: UnaryPQLOperator
To int operator that converts column to int.
Applies TO_INT operator to column.
ToFloatOperator ¶
Bases: UnaryPQLOperator
To float operator that converts column to float.
Applies TO_FLOAT operator to column.
ToStringOperator ¶
Bases: UnaryPQLOperator
To string operator that converts column to string.
Applies TO_STRING operator to column.
Parameters:
-
operand
(Union[ScalarValue, PQLOperator]
) –Operand which is converted to string.
-
format_
(Optional[str]
, default:None
) –Format defining how dates are interpreted documentation.
ToDateOperator ¶
Bases: UnaryPQLOperator
To date operator that converts column to date.
Applies TO_DATE operator to column.
Parameters:
-
operand
(Union[ScalarValue, PQLOperator]
) –Operand which is converted to date.
-
format_
(str
) –Format defining how string is interpreted documentation.