snowflake.snowpark.functions.bitxor¶
- snowflake.snowpark.functions.bitxor(expr1: Union[snowflake.snowpark.column.Column, str], expr2: Union[snowflake.snowpark.column.Column, str], padside: Optional[str] = None) Column[source]¶
Returns the bitwise XOR of two numeric expressions.
- Parameters:
expr1 – The first numeric expression.
expr2 – The second numeric expression.
padside – Optional padding side specification.
Example:
- Additional Example with padside parameter::