snowflake.snowpark.functions.not_¶ snowflake.snowpark.functions.not_(e: Union[Column, str]) → Column[source] (https://github.com/snowflakedb/snowpark-python/blob/release-v1.6.1/src/snowflake/snowpark/functions.py#L1340-L1356)¶ Returns the inverse of a boolean expression. Example: CopyExpand>>> df = session.create_dataframe([[True]], schema=["a"]) >>> df.select(not_(col("a").alias("result"))).show() ------------ |"RESULT" | ------------ |False | ------------ Show lessSee moreScroll to top