Returns |
Since the function returns a Boolean value, it can be used as a function or a conditional.
Integer literal value:
isodd('3') |
Output: Returns the value true
.
Column reference value:
isodd(countStudents) |
Output: If the value in the countStudents
column is an odd number, then return true
.
isodd(int_value) |
Argument | Required? | Data Type | Description |
---|---|---|---|
int_value | Y | integer | This value can be an Integer, a function returning an Integer, or a column reference. |
Name of the columns, expressions, or literals to compare.
Required? | Data Type | Example Value |
---|---|---|
Yes | Column reference, function, or Integer literal value | myColumn |