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

snowflake.snowpark.functions.negate

snowflake.snowpark.functions.negate(e: Column | str) Column[source] (https://github.com/snowflakedb/snowpark-python/blob/release-v1.5.0/src/snowflake/snowpark/functions.py#L1272-L1288)

Returns the negation of the value in the column (equivalent to a unary minus).

Example:

>>> df = session.create_dataframe([[1]], schema=["a"])
>>> df.select(negate(col("a").alias("result"))).show()
------------
|"RESULT"  |
------------
|-1        |
------------
Copy
语言: 中文