NOT
Returns true if the input is false, false if the input is true, null if the input is null and applies this same logic to each element of an array input.
Syntax
Arguments
Name | Type | Description | Default Value |
---|---|---|---|
input | Boolean |
Returns
Boolean
Examples
input | Output |
---|---|
true | false |
null::Boolean | null |
false | true |
array[false, true, false] | [true, false, true] |
Transformation job example
SQL
Query result
input | Output |
---|---|
true | false |
Last updated