8.18/6/2018

Comparison Operators and Operator Functions

Name:

Description:

>=

GE

operator

function

Compares two expressions of any type and returns true if the first is greater than or equal to the second, false otherwise. This is the functional equivalent to the >= operator.GE (function)

>

GT

operator

function

Compares two expressions of any type and returns true if the first is greater than the second, false otherwise. This is the functional equivalent to the > operator. GT (function)

<=

LE

operator

function

Compares two expressions of any type and returns true if the first is less than or equal to the second, false otherwise. This is the functional equivalent to the <= operator.LE (function)

<

LT

operator

function

Compares two expressions of any type and returns true if the first is less than the second, false otherwise. This is the functional equivalent to the < operator.LT (function)

=

Eq

operator

function

Compares two expressions of any type and returns true if both are equal, false otherwise. This is the functional equivalent of the = operator.Eq (function)

<>

NE

operator

function

Compares two expressions of any type and returns true if they are not equal, false otherwise. This is the functional equivalent to the <> operator.NE (function)