SQL ABS Function

Example

Return the absolute value of a number:

SELECT Abs(-243.5) AS AbsNum;

Definition and Usage

The ABS() function returns the absolute value of a number.

Syntax

ABS(number)

Continue reading SQL ABS Function