Skip to content

Latest commit

 

History

History
55 lines (39 loc) · 1.23 KB

abs-ssis-expression.md

File metadata and controls

55 lines (39 loc) · 1.23 KB
title description author ms.author ms.date ms.service ms.subservice ms.topic helpviewer_keywords
ABS (SSIS Expression)
ABS (SSIS Expression)
chugugrace
chugu
03/01/2017
sql
integration-services
conceptual
ABS function
absolute positive value

ABS (SSIS Expression)

[!INCLUDEsqlserver-ssis]

Returns the absolute, positive value of a numeric expression.

Syntax

  
ABS(numeric_expression)  

Arguments

numeric_expression
Is a signed or unsigned numeric expression.

Result Types

The data type of the numeric expression submitted to the function.

Remarks

ABS returns a null result if the argument is null.

Expression Examples

These examples apply the ABS function to a positive and a negative number. Both return 1.23.

ABS(-1.23)  
ABS(1.23)  

This example applies the ABS function to an expression that subtracts values in the variables HighTemperature and LowTempature.

ABS(@HighTemperature - @LowTemperature)  

See Also

Functions (SSIS Expression)