Abs

Mathematical Function

Description

Obtain the absolute value of the input provided

Click here to navigate to the Postgre docs page for this syntax.

The function Abs() is supported on snowflake

Grammar Syntax

ABS(x)

Sample Source Patterns

Postgre

SELECT
   ABS(-45.5)
FROM
   Table1;

Snowflake

SELECT
   ABS(-45.5)
FROM
   Table1;

Last updated