snowflake.snowpark.Column.like

Column.like(pattern: Union[Column, str]) Column[source] (https://github.com/snowflakedb/snowpark-python/blob/v1.16.0/src/snowflake/snowpark/column.py#L548-L563)

Allows case-sensitive matching of strings based on comparison with a pattern.

Parameters:

pattern – A Column or a str that indicates the pattern. A str will be interpreted as a literal value instead of a column name.

For details, see the Snowflake documentation on LIKE.

语言: 中文