Share via


Comparison Operators (U-SQL)

Summary

Comparison operators test whether two expressions are the same. U-SQL supports the following operators:

Operator Meaning
IS NULL Determines whether a specified expression is NULL.
== (Equals) Equal to
> (Greater Than) Greater than
< (Less Than) Less than
>= (Greater Than or Equal To) Greater than or equal to
<= (Less Than or Equal To) Less than or equal to
!= (Not Equal To) Not equal to

See Also