You are viewing documentation about an older version (1.3.0). View latest version

snowflake.snowpark.Column.like¶

Column.like(pattern: ColumnOrLiteralStr) → Column[source]¶

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.