snowflake.snowpark.functions.negate¶ snowflake.snowpark.functions.negate(e: ColumnOrName) → Column[source]¶ Returns the negation of the value in the column (equivalent to a unary minus). Example: CopyExpand>>> df = session.create_dataframe([[1]], schema=["a"]) >>> df.select(negate(col("a").alias("result"))).show() ------------ |"RESULT" | ------------ |-1 | ------------ Show lessSee moreScroll to top