snowflake.snowpark.Column.startswith¶
- Column.startswith(other: Union[Column, str]) Column [source] (https://github.com/snowflakedb/snowpark-python/blob/v1.16.0/src/snowflake/snowpark/column.py#L585-L593)¶
Returns true if this Column starts with another string.
- Parameters:
other – A
Column
or astr
that is used to check if this column starts with it. Astr
will be interpreted as a literal value instead of a column name.