snowflake.snowpark.functions.square¶
- snowflake.snowpark.functions.square(expr: Union[snowflake.snowpark.column.Column, str]) Column[source]¶
Returns the square of a numeric expression (expr * expr).
- Parameters:
expr (ColumnOrName) – The numeric values to be squared.
- Returns:
The square of the input values.
- Return type:
- Examples::