snowflake.snowpark.functions.st_contains¶
- snowflake.snowpark.functions.st_contains(geography_or_geometry_expression_1: Union[snowflake.snowpark.column.Column, str], geography_or_geometry_expression_2: Union[snowflake.snowpark.column.Column, str]) Column[source]¶
Returns True if the first geography expression completely contains the second geography expression.
- Parameters:
geography_or_geometry_expression_1 (ColumnOrName) – The geography expression that potentially contains the second expression
geography_or_geometry_expression_2 (ColumnOrName) – The geography expression to test for containment within the first expression
- Returns:
A boolean column indicating whether the first geography contains the second
- Return type:
- Examples::