Skip to content

Latest commit

 

History

History
55 lines (39 loc) · 1.31 KB

File metadata and controls

55 lines (39 loc) · 1.31 KB
title SIGN (SSIS Expression)
description SIGN (SSIS Expression)
author chugugrace
ms.author chugu
ms.date 03/01/2017
ms.service sql
ms.subservice integration-services
ms.topic reference
helpviewer_keywords
positive values [Integration Services]
SIGN function
negative values

SIGN (SSIS Expression)

[!INCLUDEsqlserver-ssis]

Returns the positive (+1), negative (-1), or zero (0) sign of a numeric expression.

Syntax

  
SIGN(numeric_expression)  

Arguments

numeric_expression
Is a valid signed numeric expression. For more information, see Integration Services Data Types.

Result Types

DT_I4

Remarks

SIGN returns a null result if the argument is null.

Expression Examples

This example returns the sign of a numeric literal. The return result is -1.

SIGN(-123.45)  

This example returns the sign of the result of subtracting the StandardCost column from the DealerPrice column.

SIGN(DealerPrice - StandardCost)  

See Also

Functions (SSIS Expression)