gte
gte(a: storable, b: storable) -> bool
Returns true when the first argument is greater than or equal to the second, after automatic coercion between the operands when the compiler can align their types. Arguments are storable values whose types must be comparable with each other. When either side is null, the result is null, following the same three-valued comparison rules as eq.
Domain
This is a scalar function (calculates a single output value for a single input row).
Categories
Examples
make_col passing: gte(score, 60)
Adds a boolean column that is true when the numeric score meets or exceeds the cutoff of 60.
Updated 19 days ago