snowflake.snowpark.Column.startswith¶
- Column.startswith(other: ColumnOrLiteralStr) Column[source] (https://github.com/snowflakedb/snowpark-python/blob/release-v1.3.0/src/snowflake/snowpark/column.py#L562-L570)¶
Returns true if this Column starts with another string.
- Parameters:
other – A
Columnor astrthat is used to check if this column starts with it. Astrwill be interpreted as a literal value instead of a column name.