MINUS

Negates a numeric value.

Analyze Syntax

func.minus( <x> )

Analyze Examples

func.minus(func.pi())

┌─────────────────────────┐
  func.minus(func.pi())  
├─────────────────────────┤
      -3.141592653589793 
└─────────────────────────┘

SQL Syntax

MINUS( <x> )

Aliases

SQL Examples

SELECT MINUS(PI()), NEG(PI()), NEGATE(PI()), SUBTRACT(PI());

┌───────────────────────────────────────────────────────────────────────────────────┐
     minus(pi())          neg(pi())         negate(pi())       subtract(pi())   
├────────────────────┼────────────────────┼────────────────────┼────────────────────┤
 -3.141592653589793  -3.141592653589793  -3.141592653589793  -3.141592653589793 
└───────────────────────────────────────────────────────────────────────────────────┘
Last modified April 23, 2024 at 12:42 PM EST: updating numerical functions (2a94341)