ABS
Returns the absolute value of x
.
Analyze Syntax
func.abs( <x> )
Analyze Examples
func.abs((- 5))
┌─────────────────┐
│ func.abs((- 5)) │
├─────────────────┤
│ 5 │
└─────────────────┘
SQL Syntax
ABS( <x> )
SQL Examples
SELECT ABS(-5);
┌────────────┐
│ abs((- 5)) │
├────────────┤
│ 5 │
└────────────┘
Last modified April 23, 2024 at 12:42 PM EST: updating numerical functions (2a94341)