snowflake.snowpark.functions.bitshiftright¶ snowflake.snowpark.functions.bitshiftright(to_shift_column: Union[Column, str], n: Union[Column, int]) → Column[source] (https://github.com/snowflakedb/snowpark-python/blob/release-v1.6.1/src/snowflake/snowpark/functions.py#L501-L510)¶ Returns the bitwise negation of a numeric expression. Example CopyExpand>>> df = session.create_dataframe([2], schema=["a"]) >>> df.select(bitshiftright("a", 1)).collect()[0][0] 1 Show lessSee moreScroll to top