ABS
Description
A mathematical function that returns the absolute (positive) value of the specified numeric expression. (ABS
changes negative values to positive values. ABS
has no effect on zero or positive values.) (ABS in Transact-SQL).
Sample Source Pattern
Syntax
ABS( expression )
Examples
Code:
SELECT ABS(-5);
Result:
ABS(-5)|
-------+
5|
Related Documentation
Last updated