Skip to content

Latest commit

 

History

History
52 lines (36 loc) · 1.55 KB

File metadata and controls

52 lines (36 loc) · 1.55 KB
title () (Parentheses) (SSIS Expression)
description () (Parentheses) (SSIS Expression)
author chugugrace
ms.author chugu
ms.date 03/01/2017
ms.service sql
ms.subservice integration-services
ms.topic concept-article
helpviewer_keywords
() (parentheses operator)
evaluation order [Integration Services]
parentheses operator ()

() (Parentheses) (SSIS Expression)

[!INCLUDEsqlserver-ssis]

Identifies the evaluation order of expressions. Expressions enclosed in parentheses have the highest evaluation precedence. Nested expressions enclosed in parentheses are evaluated in inner-to-outer order.

Parentheses are also used to make complex expressions easier to understand.

Syntax

  
(expression)  
  

Arguments

expression
Is any valid expression.

Result Types

The data type of expression. For more information, see Integration Services Data Types.

Expression Examples

This example shows how the use of parenthesis modifies the precedence of operators. The first expression evaluates to 100, whereas the second one evaluates to 31.

(5 + 5) * (4 + 6)  
5 + 5 * 4 + 6  
  

See Also

Operator Precedence and Associativity
Operators (SSIS Expression)