snowflake.snowpark.Column.like¶
- Column.like(pattern: ColumnOrLiteralStr) Column[source] (https://github.com/snowflakedb/snowpark-python/blob/release-v1.3.0/src/snowflake/snowpark/column.py#L525-L540)¶
Allows case-sensitive matching of strings based on comparison with a pattern.
- Parameters:
pattern – A
Columnor astrthat indicates the pattern. Astrwill be interpreted as a literal value instead of a column name.
For details, see the Snowflake documentation on LIKE.