lt
lt(a: storable, b: storable) -> bool
Returns true when the first argument is strictly less than the second, after coercion so both operands share a comparable type when possible. Each argument must be a storable type, and the pair must admit ordered comparison. Any null input makes the boolean result null rather than true or false.
Domain
This is a scalar function (calculates a single output value for a single input row).
Categories
Examples
filter lt(size_bytes, 1024)
Selects rows whose integer size_bytes value is strictly less than 1024.
Updated about 1 month ago