COALESCE
COALESCE
Returns the first non-null value from a list of expressions. Evaluates expressions from left to right and returns the first one that is not null. If all expressions are null, returns null.

IFF
IFF
Conditional function/statement that returns one value if a condition is true, and another value if false. Can be nested within other IFF functions for complex conditional logic. Syntax: IFF(condition, value_if_true, value_if_false).

CONCAT
CONCAT
Concatenates two or more string values into a single string with a custom separator/delimiter. Combines multiple text values in the order they are provided. Returns an empty string if all input values are null.

FLOAT
FLOAT
Converts a value to a decimal column type. Handles conversion from strings, integers, and other numeric types.



INT
INT
Converts a value to an integer columns type. Rounds down to the nearest integer when converting from float values.

DATE
DATE
Converts a text literal or text column to a datetime type. Note that the value has to be without a time component and in this format: YYYY-MM-DD.

DATETIME
DATETIME
Converts a text literal or text column to a datetime type. Note that the value has to be with a time component and in this format: YYYY-MM-DD HH:MM:SS.

AND
AND
Logical operator that returns true only if all conditions are true. Typically used within IFF functions or IF Column tool for complex conditional logic. Returns false if any condition is false or null.

OR
OR
Logical operator that returns true if at least one condition is true. Typically used within IFF functions or IF Column tool for complex conditional logic. Returns false only if all conditions are false or null.

ISNULL
ISNULL
Returns a boolean value indicating whether a value is null. Returns true if the value is null, false otherwise. Useful for conditional logic and data validation.

ISNOTNULL
ISNOTNULL
Returns a boolean value indicating whether a value is not null. Returns true if the value has any non-null content, false if the value is null. Useful for conditional logic and data validation.

ISTRUE
ISTRUE
Returns a boolean value indicating whether a value is true. Returns true if the value is true, false otherwise. Useful for conditional logic and data validation.

ISFALSE
ISFALSE
Returns a boolean value indicating whether a value is false. Returns true if the value is false, false otherwise. Useful for conditional logic and data validation.
