Skip to main content

11 docs tagged with "Logical"

View all tags

Between

Determines whether a given number falls within a specified range; returns True if the given number does exist in the specified range.

In

Determines whether a given value exists in a given vector; returns True if the given number does exist in the specified vector.

IsDate

Returns true if the value is of date type.

IsEmpty

Returns True if column contains empty value (does not include nulls) or False if not.

IsFloat

Returns true if the value is of float type or false if not.

IsInt

Returns true if the value is of integer type or false if not.

IsNull

Returns True if column contains null value or False if not.

IsNullOrEmpty

Returns True if column contains empty value including nulls or False if not.

IsOdd

Returns True if number is odd, or False if number is even.

Like

Checks if the given input matches the search pattern (similar to SQL LIKE predicate).

Switch

Works similar to a switch case statement.