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

snowflake.snowpark.functions.bitshiftright

snowflake.snowpark.functions.bitshiftright(to_shift_column: Column | str, n: Column | int) Column[source] (https://github.com/snowflakedb/snowpark-python/blob/release-v1.5.0/src/snowflake/snowpark/functions.py#L499-L508)

Returns the bitwise negation of a numeric expression.

Example

>>> df = session.create_dataframe([2], schema=["a"])
>>> df.select(bitshiftright("a", 1)).collect()[0][0]
1
Copy
Language: English