Compound Expressions
Expressions
Description
A compound expression is a series of simple expressions joined by arithmetic operators. A simple expression used in a compound expression must return a numeric value.
Grammar Syntax
expression operator {expression | (compound_expression)}Conversion Table
Sample Source Patterns
Input Code:
concat_string_number
Hello has number 42
<NULL>
Redshift has number -7
concat_string_date
Hello on 2023-12-01
<NULL>
<NULL>
concat_with_null_handling
Hello with number 42
Unknown with number 0
Redshift with number -7
Output Code:
concat_string_number
Hello has number 42
<NULL>
Redshift has number -7
concat_string_date
Hello on 2023-12-01
<NULL>
<NULL>
concat_with_null_handling
Hello with number 42
Unknown with number 0
Redshift with number -7
Known Issues
No issues were found.
Related EWIs
There are no known issues.
Last updated
