gte

Description

Return true if A is greater than or equal to B.

Return type

bool

Domain

This is a scalar function (calculates a single output value for a single input row.)

Categories

Usage

gte(a, b)

Argument

Type

Optional

Repeatable

Restrictions

a

comparable

no

no

none

b

comparable

no

no

none

Examples

filter gte(count, 2)

This filters a dataset with a count column to only include rows where count is greater than or equal to 2.