Other
Cast
Converts the type of a variable. Consider using the "retype" step for additional functionality. –> learn more
CASE WHEN @expression IS NULL THEN NULL ELSE COALESCE(SAFE_CAST(@expression AS @castType), ERROR(FORMAT('Could not cast @expression to @castType, encountered value: %t', @expression))) ENDReturn type
dynamic (input-dependent)
Parameters
Coalesce
Takes the first non-null value of a set of values. –> learn more
COALESCE(@expression)Return type
dynamic (input-dependent)
Parameters
Constant
Create a constant value as a variable –> learn more
Return type
dynamic (input-dependent)
Parameters
Hash
Returns an MD5 hash of all values as a base64 encoded string. Non-string values will be first coerced to strings. Note that order of inputs will affect the hash. –> learn more
Return type
string
Parameters
Sample
Create a random, deterministic value in the range of [0, 1) based on a specific set of variable(s). –> learn more
Return type
float
Parameters
UUID
Generate a random universally unique identifier (UUID) –> learn more
Return type
string
Parameters
Last updated
Was this helpful?

